From 2ea0569d7caa1062e7eb0cc654606b7ef0a3c2da Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 16 Dec 2022 16:02:06 -0500 Subject: [PATCH 01/27] Support artifacts output format --- .../Microsoft.NET.Build.Tasks/sdk/Sdk.props | 36 ++++++ .../Microsoft.NET.DefaultOutputPaths.targets | 110 +++++++++++++++--- ...oft.NET.RuntimeIdentifierInference.targets | 4 +- .../Microsoft.NET.Sdk.BeforeCommon.targets | 19 ++- ...osoft.NET.TargetFrameworkInference.targets | 25 +--- 5 files changed, 150 insertions(+), 44 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props index 4a646cb37fda..2272634f3935 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props +++ b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props @@ -32,6 +32,42 @@ Copyright (c) .NET Foundation. All rights reserved. true + + + + + true + + + <_DirectoryBuildPropsFile Condition="'$(_DirectoryBuildPropsFile)' == ''">Directory.Build.props + <_DirectoryBuildPropsBasePath Condition="'$(_DirectoryBuildPropsBasePath)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), '$(_DirectoryBuildPropsFile)')) + $([System.IO.Path]::Combine('$(_DirectoryBuildPropsBasePath)', '$(_DirectoryBuildPropsFile)')) + + + + + + false + + + + + true + + artifacts\ + $([MSBuild]::EnsureTrailingSlash($(BaseArtifactsPath))) + + $(BaseArtifactsPath)bin\ + $(BaseArtifactsPath)intermediates\ + + $(ProjectExtensionsPathForSpecifiedProject) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index e46b2066d2e1..36d07d99ca82 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -11,29 +11,47 @@ Copyright (c) .NET Foundation. All rights reserved. --> - - - Debug - AnyCPU - $(Platform) + + + true + + + + + true + + + + + artifacts\ + $([MSBuild]::EnsureTrailingSlash($(BaseArtifactsPath))) + + $(BaseArtifactsPath)bin\ + + + bin\ $(BaseOutputPath)\ $(BaseOutputPath)$(Configuration)\ $(BaseOutputPath)$(PlatformName)\$(Configuration)\ $(OutputPath)\ + + + obj\ $(BaseIntermediateOutputPath)\ $(BaseIntermediateOutputPath)$(Configuration)\ @@ -42,8 +60,72 @@ Copyright (c) .NET Foundation. All rights reserved. - - $(OutputPath) + + $(OutputPath) + $(BaseArtifactsPath)\package\ + + + + + $(DefaultItemExcludes);$(OutputPath)/** + $(DefaultItemExcludes);$(IntermediateOutputPath)/** + + + + $(DefaultItemExcludes);$(BaseArtifactsPath)/** + + + $(DefaultItemExcludes);bin/** + $(DefaultItemExcludes);obj/** + + + $(OutputPath)$(TargetFramework.ToLowerInvariant())\ + + + + $(IntermediateOutputPath)$(TargetFramework.ToLowerInvariant())\ + + + + <_ArtifactPivots>$(Configuration.ToLowerInvariant()) + + + <_TargetFrameworkBackup>$(TargetFramework) + + false + true + $(_TargetFrameworkBackup) + + <_ArtifactPivots Condition="'$(TargetFrameworks)' != '' Or + '$(TargetFrameworkIsGlobal)' == 'true'" + >$(_ArtifactPivots)_$(TargetFramework.ToLowerInvariant()) + + + <_ArtifactPivots Condition="'$(RuntimeIdentifier)' != ''" + >$(_ArtifactPivots)_$(RuntimeIdentifier.ToLowerInvariant()) + + $(BaseOutputPath)$(_ArtifactPivots)\ + + + publish + $(BaseArtifactsPath)$(PublishDirName)\$(_ArtifactPivots)\ + + + + + $(BaseIntermediateOutputPath)$(_ArtifactPivots)\ + diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets index 73c6643b6053..07d07e979990 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets @@ -302,8 +302,8 @@ Copyright (c) .NET Foundation. All rights reserved. append a RID the user never mentioned in the path and do so even in the AnyCPU case. --> - $(IntermediateOutputPath)$(RuntimeIdentifier)\ - $(OutputPath)$(RuntimeIdentifier)\ + $(IntermediateOutputPath)$(RuntimeIdentifier)\ + $(OutputPath)$(RuntimeIdentifier)\ - - + + + Debug + AnyCPU + $(Platform) + + + + @@ -115,8 +125,9 @@ Copyright (c) .NET Foundation. All rights reserved. $(PreserveCompilationContext) - - + + publish - - - - $(DefaultItemExcludes);$(OutputPath)/** - $(DefaultItemExcludes);$(IntermediateOutputPath)/** - - - - - true - - + true true - - - $(IntermediateOutputPath)$(TargetFramework.ToLowerInvariant())\ - $(OutputPath)$(TargetFramework.ToLowerInvariant())\ - - From 812f8a50aae11ecacfd865932d204833f151acfd Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 16 Dec 2022 16:12:49 -0500 Subject: [PATCH 02/27] Update tests for artifacts output format --- .../AllResourcesInSatellite.csproj | 9 - .../AllResourcesInSatellite.csproj | 9 - .../x64SolutionBuild/x64SolutionBuild.csproj | 7 +- .../Microsoft.NET.Build.Tests/AppHostTests.cs | 10 +- .../DepsFileSkipTests.cs | 6 +- .../GivenFrameworkReferences.cs | 20 +- ...nThatWeHaveAPackageReferenceWithAliases.cs | 7 +- .../GivenThatWeWantAllResourcesInSatellite.cs | 8 + ...tRuntimeConfigInBuiltProjectOutputGroup.cs | 19 +- ...tSatelliteAssembliesHaveassemblyVersion.cs | 9 + ...GivenThatWeWantToBuildAComServerLibrary.cs | 6 +- ...nThatWeWantToBuildACrossTargetedLibrary.cs | 8 +- .../GivenThatWeWantToBuildADesktopExe.cs | 12 +- .../GivenThatWeWantToBuildALibrary.cs | 10 +- .../GivenThatWeWantToBuildANetCoreApp.cs | 56 +++-- ...GivenThatWeWantToBuildASelfContainedApp.cs | 4 +- ...ntToBuildASolutionWithNonAnyCPUPlatform.cs | 4 +- .../GivenThatWeWantToBuildAUnitTestProject.cs | 4 +- ...atWeWantToBuildAWindowsRuntimeComponent.cs | 2 +- ...atWeWantToBuildAnAppWithLibrariesAndRid.cs | 4 +- .../GivenThatWeWantToBuildAnAppWithLibrary.cs | 6 +- ...ThatWeWantToBuildAnAppWithSharedProject.cs | 2 +- ...ildAnAppWithTransitiveNonSdkProjectRefs.cs | 2 +- ...ntToBuildAnAppWithTransitiveProjectRefs.cs | 4 +- ...hatWeWantToControlGeneratedAssemblyInfo.cs | 14 +- .../GivenThatWeWantToCopyLocalDependencies.cs | 12 +- .../GivenThatWeWantToCopyPPFileToOutput.cs | 2 +- .../GivenThatWeWantToReferenceAProject.cs | 4 +- .../GivenThatWeWantToReferenceAnAssembly.cs | 1 - .../GivenThatWeWantToResolveConflicts.cs | 2 +- ...nThatWeWantToVerifyNuGetReferenceCompat.cs | 2 +- .../GlobalPropertyFlowTests.cs | 28 ++- .../NonCopyLocalProjectReferenceTests.cs | 2 +- .../ReferenceExeTests.cs | 4 +- .../Commands/GetValuesCommand.cs | 18 +- .../Commands/MSBuildCommand.cs | 17 +- .../Commands/PublishCommand.cs | 14 +- .../OutputPathCalculator.cs | 199 ++++++++++++++++++ .../ProjectConstruction/TestProject.cs | 13 ++ .../Microsoft.NET.TestFramework/TestAsset.cs | 27 +-- 40 files changed, 432 insertions(+), 155 deletions(-) create mode 100644 src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs diff --git a/src/Assets/TestProjects/AllResourcesInSatellite/AllResourcesInSatellite.csproj b/src/Assets/TestProjects/AllResourcesInSatellite/AllResourcesInSatellite.csproj index 89d58fc6df67..04c26e61f36b 100644 --- a/src/Assets/TestProjects/AllResourcesInSatellite/AllResourcesInSatellite.csproj +++ b/src/Assets/TestProjects/AllResourcesInSatellite/AllResourcesInSatellite.csproj @@ -8,15 +8,6 @@ true - - - $(TargetFrameworks);net46 - - false diff --git a/src/Assets/TestProjects/AllResourcesInSatelliteDisableVersionGenerate/AllResourcesInSatellite.csproj b/src/Assets/TestProjects/AllResourcesInSatelliteDisableVersionGenerate/AllResourcesInSatellite.csproj index e88002c8e9fa..bd26300d209a 100644 --- a/src/Assets/TestProjects/AllResourcesInSatelliteDisableVersionGenerate/AllResourcesInSatellite.csproj +++ b/src/Assets/TestProjects/AllResourcesInSatelliteDisableVersionGenerate/AllResourcesInSatellite.csproj @@ -9,15 +9,6 @@ false - - - $(TargetFrameworks);net46 - - false diff --git a/src/Assets/TestProjects/x64SolutionBuild/x64SolutionBuild.csproj b/src/Assets/TestProjects/x64SolutionBuild/x64SolutionBuild.csproj index 14ef6f89c5e5..e2163fcb1a6e 100644 --- a/src/Assets/TestProjects/x64SolutionBuild/x64SolutionBuild.csproj +++ b/src/Assets/TestProjects/x64SolutionBuild/x64SolutionBuild.csproj @@ -1,13 +1,12 @@ - - - - Exe $(CurrentTargetFramework) + + + diff --git a/src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs b/src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs index 9bf485677e4a..b4b1f81302dc 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs @@ -78,7 +78,7 @@ public void It_builds_a_runnable_apphost_by_default(string targetFramework) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); var hostExecutable = $"HelloWorld{Constants.ExeSuffix}"; outputDirectory.Should().OnlyHaveFiles(GetExpectedFilesFromBuild(testAsset, targetFramework)); new RunExeCommand(Log, Path.Combine(outputDirectory.FullName, hostExecutable)) @@ -270,19 +270,19 @@ public void It_uses_an_apphost_based_on_platform_target(string target) var testAsset = _testAssetsManager .CopyTestAsset("HelloWorld", identifier: target) + .WithTargetFramework(targetFramework) .WithSource(); var buildCommand = new BuildCommand(testAsset); buildCommand .Execute(new string[] { - $"/p:TargetFramework={targetFramework}", $"/p:PlatformTarget={target}", $"/p:NETCoreSdkRuntimeIdentifier={EnvironmentInfo.GetCompatibleRid(targetFramework)}" }) .Should() .Pass(); - var apphostPath = Path.Combine(buildCommand.GetOutputDirectory(targetFramework).FullName, "HelloWorld.exe"); + var apphostPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, "HelloWorld.exe"); if (target == "x86") { IsPE32(apphostPath).Should().BeTrue(); @@ -321,7 +321,7 @@ public void AppHost_contains_resources_from_the_managed_dll() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework, runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); outputDirectory.Should().HaveFiles(new[] { testProject.Name + ".exe" }); string apphostPath = Path.Combine(outputDirectory.FullName, testProject.Name + ".exe"); @@ -406,7 +406,7 @@ public void It_retries_on_failure_to_create_apphost() .Should() .Pass(); - var intermediateDirectory = buildCommand.GetIntermediateDirectory(targetFramework: ToolsetInfo.CurrentTargetFramework).FullName; + var intermediateDirectory = buildCommand.GetIntermediateDirectory().FullName; File.SetLastWriteTimeUtc( Path.Combine( diff --git a/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs b/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs index 8795de444adf..2b0b1a396381 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs @@ -138,8 +138,7 @@ public void ResourceAssetFromPackageCanBeSkipped() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, - runtimeIdentifier: testProject.RuntimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier).FullName; string depsJsonPath = Path.Combine(outputFolder, $"{testProject.Name}.deps.json"); @@ -178,8 +177,7 @@ private void TestSkippingFile(TestProject testProject, string filenameToSkip, st .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, - runtimeIdentifier: testProject.RuntimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier).FullName; string depsJsonPath = Path.Combine(outputFolder, $"{testProject.Name}.deps.json"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs index 3ce1ce8c5403..649b07860ddf 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs @@ -60,7 +60,7 @@ public void Multiple_frameworks_are_written_to_runtimeconfig_when_there_are_mult .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -107,9 +107,9 @@ public void Multiple_frameworks_are_written_to_runtimeconfig_for_self_contained_ .Should() .Pass(); - DirectoryInfo outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + DirectoryInfo outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier); - string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.RuntimeIdentifier, testProject.Name + ".runtimeconfig.json"); + string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); List includedFrameworkNames = GetIncludedFrameworks(runtimeConfigFile); if (shouldHaveIncludedFrameworks) { @@ -173,7 +173,7 @@ public void DuplicateFrameworksAreNotWrittenToRuntimeConfigWhenThereAreDifferent .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -702,7 +702,7 @@ public void TransitiveFrameworkReferenceFromProjectReference() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -712,7 +712,7 @@ public void TransitiveFrameworkReferenceFromProjectReference() runtimeFrameworkNames.Should().BeEquivalentTo("Microsoft.AspNetCore.App", "Microsoft.NETCore.App"); } - [Fact] + [Fact(Skip = "https://github.com/NuGet/Home/issues/12323")] public void TransitiveFrameworkReferenceFromPackageReference() { var referencedPackage = new TestProject() @@ -755,7 +755,7 @@ public void TransitiveFrameworkReferenceFromPackageReference() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -1005,7 +1005,7 @@ private void TestFrameworkReferenceProfiles( if (selfContained) { - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier); // The output directory should have the DLLs which are not referenced at compile time but are // still part of the shared framework. @@ -1110,13 +1110,13 @@ private ResolvedVersionInfo GetResolvedVersions(TestProject testProject, testAsset = testAsset.WithProjectChanges(projectChanges); } - var command = new MSBuildCommand(Log, "WriteResolvedVersions", Path.Combine(testAsset.TestRoot, testProject.Name)); + var command = new MSBuildCommand(testAsset, "WriteResolvedVersions"); command.ExecuteWithoutRestore() .Should() .Pass(); - var outputDirectory = command.GetOutputDirectory(testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); + var outputDirectory = command.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier); var resolvedVersions = ResolvedVersionInfo.ParseFrom(Path.Combine(outputDirectory.FullName, "resolvedversions.txt")); return resolvedVersions; diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs index 80e9bcb7fd6c..8626e3d50502 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs @@ -13,6 +13,7 @@ using System.Runtime.CompilerServices; using Xunit; using Xunit.Abstractions; +using static System.Net.WebRequestMethods; namespace Microsoft.NET.Build.Tests { @@ -22,7 +23,7 @@ public class GivenThatWeHaveAPackageReferenceWithAliases : SdkTest public GivenThatWeHaveAPackageReferenceWithAliases(ITestOutputHelper log) : base(log) { } - [RequiresMSBuildVersionFact("16.8.0")] + [RequiresMSBuildVersionFact("16.8.0", Skip = "https://github.com/NuGet/Home/issues/12323")] public void CanBuildProjectWithPackageReferencesWithConflictingTypes() { var targetFramework = ToolsetInfo.CurrentTargetFramework; @@ -60,7 +61,7 @@ public void CanBuildProjectWithPackageReferencesWithConflictingTypes() .Pass(); } - [RequiresMSBuildVersionFact("16.8.0")] + [RequiresMSBuildVersionFact("16.8.0", Skip = "https://github.com/NuGet/Home/issues/12323")] public void CanBuildProjectWithMultiplePackageReferencesWithAliases() { var targetFramework = ToolsetInfo.CurrentTargetFramework; @@ -104,7 +105,7 @@ public void CanBuildProjectWithMultiplePackageReferencesWithAliases() .Pass(); } - [RequiresMSBuildVersionFact("16.8.0")] + [RequiresMSBuildVersionFact("16.8.0", Skip = "https://github.com/NuGet/Home/issues/12323")] public void CanBuildProjectWithAPackageReferenceWithMultipleAliases() { var targetFramework = ToolsetInfo.CurrentTargetFramework; diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs index 19c0aa0285a2..0865bbc874fc 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs @@ -44,6 +44,14 @@ internal static void TestSatelliteResources( testAsset = testAsset.WithProjectChanges(projectChanges); } + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) + { + // Also target desktop on Windows to get more test coverage: + // * Desktop requires satellites to have same public key as parent whereas coreclr does not. + // * Reference path handling of satellite assembly generation used to be incorrect for desktop. + testAsset = testAsset.WithTargetFrameworks($"{ToolsetInfo.CurrentTargetFramework};net46"); + } + var buildCommand = new BuildCommand(testAsset); if (setup != null) diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs index 583785def0e2..c8756f4d978c 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs @@ -32,9 +32,7 @@ public void It_has_target_path_and_final_outputput_path_metadata(string targetFr .WithTargetFramework(targetFramework); var command = new GetValuesCommand( - Log, - testAsset.TestRoot, - targetFramework, + testAsset, "BuiltProjectOutputGroupOutput", GetValuesCommand.ValueType.Item) { @@ -44,7 +42,8 @@ public void It_has_target_path_and_final_outputput_path_metadata(string targetFr command.Execute().Should().Pass(); - var outputDirectory = command.GetOutputDirectory(targetFramework); + var outputDirectory = command.GetOutputDirectory(); + var runtimeConfigFile = outputDirectory.File("HelloWorld.runtimeconfig.json"); var (_, metadata) = command.GetValuesWithMetadata().Single(i => i.value == runtimeConfigFile.FullName); @@ -65,12 +64,14 @@ public void It_has_runtime_config_properties_after_partial_build() }; var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); - new BuildCommand(testAsset) + var buildCommand = new BuildCommand(testAsset); + + buildCommand .Execute("/property:Configuration=Release") .Should() .Pass(); - var configFile = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Release", testProject.TargetFrameworks, testProject.RuntimeIdentifier, testProject.Name + ".runtimeconfig.json"); + var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, testProject.Name + ".runtimeconfig.json"); File.Exists(configFile).Should().BeTrue(); File.ReadAllText(configFile).Should().NotContain("\"System.Runtime.TieredCompilation\""); @@ -120,12 +121,14 @@ public void It_updates_runtime_config_properties_after_partial_build() propertyGroup.Add(new XElement(ns + "ThreadPoolMinThreads", "3")); }); - new BuildCommand(testAsset) + var buildCommand = new BuildCommand(testAsset); + + buildCommand .Execute("/property:Configuration=Release") .Should() .Pass(); - var configFile = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Release", testProject.TargetFrameworks, testProject.RuntimeIdentifier, testProject.Name + ".runtimeconfig.json"); + var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, testProject.Name + ".runtimeconfig.json"); File.Exists(configFile).Should().BeTrue(); File.ReadAllText(configFile).Should().Contain("\"System.Runtime.TieredCompilation\": true"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs index fa348e70e07f..292aed62fdd7 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs @@ -11,6 +11,7 @@ using FluentAssertions; using System.Reflection; using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; namespace Microsoft.NET.Build.Tests { @@ -28,6 +29,14 @@ private void RestoreAndBuildTestAssets([CallerMemberName] string callingMethod = .CopyTestAsset("AllResourcesInSatelliteDisableVersionGenerate", callingMethod) .WithSource(); + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) + { + // Also target desktop on Windows to get more test coverage: + // * Desktop requires satellites to have same public key as parent whereas coreclr does not. + // * Reference path handling of satellite assembly generation used to be incorrect for desktop. + testAsset = testAsset.WithTargetFrameworks($"{ToolsetInfo.CurrentTargetFramework};net46"); + } + var buildCommand = new BuildCommand(testAsset); buildCommand .Execute() diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs index 55bd26380e35..accf6b7ce8d3 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs @@ -33,7 +33,7 @@ public void It_copies_the_comhost_to_the_output_directory() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", @@ -69,7 +69,7 @@ public void It_generates_a_regfree_com_manifest_when_requested() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", @@ -102,7 +102,7 @@ public void It_embeds_the_clsidmap_in_the_comhost_when_rid_specified(string rid) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs index d1c81c30e854..9c822b903fe5 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs @@ -24,16 +24,16 @@ public GivenThatWeWantToBuildACrossTargetedLibrary(ITestOutputHelper log) : base public void It_builds_nondesktop_library_successfully_on_all_platforms() { var testAsset = _testAssetsManager - .CopyTestAsset("CrossTargeting") + .CopyTestAsset(Path.Combine("CrossTargeting", "NetStandardAndNetCoreApp")) .WithSource(); - var buildCommand = new BuildCommand(testAsset, "NetStandardAndNetCoreApp"); + var buildCommand = new BuildCommand(testAsset); buildCommand .Execute() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: ""); + var outputDirectory = new DirectoryInfo(Path.Combine(buildCommand.ProjectRootPath, "bin", "Debug")); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ToolsetInfo.CurrentTargetFramework}/NetStandardAndNetCoreApp.dll", $"{ToolsetInfo.CurrentTargetFramework}/NetStandardAndNetCoreApp.pdb", @@ -61,7 +61,7 @@ public void It_builds_desktop_library_successfully_on_windows() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: ""); + var outputDirectory = new DirectoryInfo(Path.Combine(buildCommand.ProjectRootPath, "bin", "Debug")); outputDirectory.Should().OnlyHaveFiles(new[] { "net40/DesktopAndNetStandard.dll", "net40/DesktopAndNetStandard.pdb", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs index 32602a94a7d2..e3dde382db61 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs @@ -878,7 +878,7 @@ public void It_places_package_xml_in_ref_folder_in_output_directory() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); // this xml is coming from ref folder outputDirectory.Should().HaveFile("System.Diagnostics.Debug.xml"); @@ -913,7 +913,7 @@ public void It_places_package_pdb_and_xml_files_in_output_directory(string enabl .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); HelperCheckPdbAndDocumentation(outputDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -956,7 +956,7 @@ public void It_places_package_pdb_and_xml_files_from_project_references_in_outpu .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(libraryProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); HelperCheckPdbAndDocumentation(outputDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -997,7 +997,7 @@ public void It_places_package_pdb_and_xml_files_in_publish_directory(string enab .Should() .Pass(); - var publishDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); + var publishDirectory = publishCommand.GetOutputDirectory(); HelperCheckPdbAndDocumentation(publishDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -1033,9 +1033,9 @@ public void It_places_package_xml_files_in_output_directory_but_not_in_publish() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); - var publishDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); + var publishDirectory = publishCommand.GetOutputDirectory(); outputDirectory.Should().HaveFile("Microsoft.Build.xml"); publishDirectory.Should().NotHaveFile("Microsoft.Build.xml"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs index ebaa47d7125b..bf1a0a9aff74 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs @@ -44,7 +44,7 @@ public void It_builds_the_library_successfully(string targetFramework) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -166,7 +166,7 @@ public void It_creates_a_documentation_file(string language) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory("netstandard1.5"); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -200,7 +200,7 @@ public void It_allows_us_to_override_the_documentation_file_name(string language .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory("netstandard1.5"); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -891,7 +891,7 @@ public void It_can_implicitly_define_predefined_Cultures_only(string targetFrame .Pass(); string runtimeConfigName = $"{testProj.Name}.runtimeconfig.json"; - var outputDirectory = buildCommand.GetOutputDirectory(testProj.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().HaveFile(runtimeConfigName); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, runtimeConfigName); @@ -946,7 +946,7 @@ public void It_can_build_with_dynamic_loading_enabled(string targetFramework, st .Pass(); string runtimeConfigName = $"{testProject.Name}.runtimeconfig.json"; - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().HaveFiles(new[] { runtimeConfigName, $"{testProject.Name}.runtimeconfig.json" diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs index 8c239e4ada92..db82ce9dc801 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs @@ -365,7 +365,7 @@ public static void Main() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks, runtimeIdentifier: runtimeIdentifier ?? "").FullName; + string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier ?? "").FullName; new DotnetCommand(Log, Path.Combine(outputFolder, project.Name + ".dll")) .Execute() @@ -423,7 +423,7 @@ public void It_stops_generating_runtimeconfig_dev_json_after_net6_allow_property var buildCommand = new BuildCommand(_testAssetsManager.CreateTestProject(proj, identifier: targetFramework)); var runtimeconfigFile = Path.Combine( - buildCommand.GetOutputDirectory(targetFramework).FullName, + buildCommand.GetOutputDirectory().FullName, $"{proj.Name}.runtimeconfig.dev.json"); // GenerateRuntimeConfigDevFile overrides default behavior @@ -487,7 +487,7 @@ public static void Main() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks).FullName; + string outputFolder = buildCommand.GetOutputDirectory().FullName; using (var depsJsonFileStream = File.OpenRead(Path.Combine(outputFolder, $"{project.Name}.deps.json"))) { @@ -526,7 +526,7 @@ public void It_generates_rid_fallback_graph(bool isSelfContained) .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks, runtimeIdentifier: runtimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier).FullName; using var depsJsonFileStream = File.OpenRead(Path.Combine(outputFolder, $"{project.Name}.deps.json")); var dependencyContext = new DependencyContextJsonReader().Read(depsJsonFileStream); @@ -607,13 +607,21 @@ public void It_publishes_package_satellites_correctly(bool crossTarget) .NotHaveStdOutMatching("Encountered conflict", System.Text.RegularExpressions.RegexOptions.CultureInvariant | System.Text.RegularExpressions.RegexOptions.IgnoreCase) ; + if (crossTarget) + { + // Let the GetOutputDirectory logic know that this project doesn't use the artifacts output format + testProject.UseArtifactsOutput = false; + } + var outputDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().NotHaveFile("Humanizer.resources.dll"); outputDirectory.Should().HaveFile(Path.Combine("fr", "Humanizer.resources.dll")); } - [Fact] - public void It_uses_lowercase_form_of_the_target_framework_for_the_output_path() + [Theory] + [InlineData(true)] + [InlineData(false)] + public void It_uses_lowercase_form_of_the_target_framework_for_the_output_path(bool useArtifactsOutput) { var testProject = new TestProject() { @@ -624,28 +632,40 @@ public void It_uses_lowercase_form_of_the_target_framework_for_the_output_path() string[] extraArgs = new[] { $"/p:TargetFramework={ToolsetInfo.CurrentTargetFramework.ToUpper()}" }; - var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); + var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name, identifier: useArtifactsOutput.ToString()); var buildCommand = new BuildCommand(testAsset); buildCommand + .WithEnvironmentVariable("UseArtifactsOutput", useArtifactsOutput.ToString()) .Execute(extraArgs) .Should() .Pass(); - string outputFolderWithConfiguration = Path.Combine(buildCommand.ProjectRootPath, "bin", "Debug"); + if (useArtifactsOutput) + { + string outputFolder = Path.Combine(buildCommand.ProjectRootPath, "artifacts", "bin", $"debug_{ToolsetInfo.CurrentTargetFramework}"); + new DirectoryInfo(outputFolder).Should().Exist(); - Directory.GetDirectories(outputFolderWithConfiguration) - .Select(Path.GetFileName) - .Should() - .BeEquivalentTo(ToolsetInfo.CurrentTargetFramework); + string intermediateFolder = Path.Combine(buildCommand.ProjectRootPath, "artifacts", "intermediates", $"debug_{ToolsetInfo.CurrentTargetFramework}"); + new DirectoryInfo(intermediateFolder).Should().Exist(); + } + else + { + string outputFolderWithConfiguration = Path.Combine(buildCommand.ProjectRootPath, "bin", "Debug"); - string intermediateFolderWithConfiguration = Path.Combine(buildCommand.GetBaseIntermediateDirectory().FullName, "Debug"); + Directory.GetDirectories(outputFolderWithConfiguration) + .Select(Path.GetFileName) + .Should() + .BeEquivalentTo(ToolsetInfo.CurrentTargetFramework); - Directory.GetDirectories(intermediateFolderWithConfiguration) - .Select(Path.GetFileName) - .Should() - .BeEquivalentTo(ToolsetInfo.CurrentTargetFramework); + string intermediateFolderWithConfiguration = Path.Combine(buildCommand.GetBaseIntermediateDirectory().FullName, "Debug"); + + Directory.GetDirectories(intermediateFolderWithConfiguration) + .Select(Path.GetFileName) + .Should() + .BeEquivalentTo(ToolsetInfo.CurrentTargetFramework); + } } [Fact] @@ -832,7 +852,7 @@ public void It_regenerates_files_if_self_contained_changes() .Should() .Pass(); - var outputPath = buildCommand.GetOutputDirectory(targetFramework: TFM, runtimeIdentifier: runtimeIdentifier).FullName; + var outputPath = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier).FullName; var depsFilePath = Path.Combine(outputPath, $"{testProject.Name}.deps.json"); var runtimeConfigPath = Path.Combine(outputPath, $"{testProject.Name}.runtimeconfig.json"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs index 003f42cf3ea8..f0eb1d820f46 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs @@ -144,7 +144,7 @@ public void It_succeeds_when_RuntimeIdentifier_and_PlatformTarget_mismatch_but_P .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework, runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); var selfContainedExecutable = $"HelloWorld{Constants.ExeSuffix}"; string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable); @@ -406,7 +406,7 @@ public void It_does_not_build_SelfContained_due_to_PublishSelfContained_being_tr .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().NotHaveFile("hostfxr.dll"); // This file will only appear if SelfContained. } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs index 2d94ba83179c..ada299a8f642 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs @@ -26,11 +26,11 @@ public void It_builds_solution_successfully() var buildCommand = new BuildCommand(testAsset, "x64SolutionBuild.sln"); buildCommand - .Execute("/p:ProduceReferenceAssembly=false") + .Execute("/p:ProduceReferenceAssembly=false", "/p:UseArtifactsOutput=false") .Should() .Pass(); - buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, Path.Combine("x64", "Debug")) + new DirectoryInfo(Path.Combine(testAsset.TestRoot, "bin", "x64", "Debug", ToolsetInfo.CurrentTargetFramework)) .Should() .OnlyHaveFiles(new[] { "x64SolutionBuild.runtimeconfig.json", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs index b7875c6e1401..80caa5a3e5f8 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs @@ -29,7 +29,7 @@ public void It_generates_runtime_config() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().HaveFile(@"XUnitTestProject.runtimeconfig.json"); } @@ -54,4 +54,4 @@ public void It_builds_when_has_runtime_output_is_true() .Pass(); } } -} \ No newline at end of file +} diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs index 9253f0deaed1..1dcd8858786d 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs @@ -195,7 +195,7 @@ static void Main(string[] args) .Pass(); // Make sure the app can run successfully - var exePath = Path.Combine(buildCommand.GetOutputDirectory(consoleApp.TargetFrameworks).FullName, consoleApp.Name + ".exe"); + var exePath = Path.Combine(buildCommand.GetOutputDirectory().FullName, consoleApp.Name + ".exe"); new RunExeCommand(Log, exePath) .Execute() .Should() diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs index b3dc06bf3658..514f3f187f36 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs @@ -49,7 +49,7 @@ public void It_builds_a_RID_specific_runnable_output() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); var selfContainedExecutable = $"App{Constants.ExeSuffix}"; string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable); @@ -95,7 +95,7 @@ public void It_builds_a_framework_dependent_RID_specific_runnable_output() .Execute($"/p:RuntimeIdentifier={runtimeIdentifier}", $"/p:TestRuntimeIdentifier={runtimeIdentifier}", "/p:SelfContained=false") .Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); outputDirectory.Should().NotHaveSubDirectories(); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs index e02014359935..d87c3f6d9ccc 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs @@ -50,7 +50,7 @@ public void It_builds_the_project_successfully_twice() void VerifyAppBuilds(TestAsset testAsset) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); buildCommand .Execute() @@ -104,7 +104,7 @@ public void It_generates_satellite_assemblies() .Should() .Pass(); - var outputDir = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDir = buildCommand.GetOutputDirectory(); var commandResult = new DotnetCommand(Log, Path.Combine(outputDir.FullName, "TestApp.dll")) .Execute(); @@ -150,7 +150,7 @@ public void The_clean_target_removes_all_files_from_the_output_folder() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "TestApp.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs index fc2bf1b15f08..01b7d0eec203 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs @@ -69,7 +69,7 @@ public void It_copies_items_from_shared_project_to_correct_output_folder() .Should() .Pass(); - var outputPath = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputPath = buildCommand.GetOutputDirectory(); outputPath.Should().NotHaveFile("TextFile1.txt"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs index adfa29abe511..93f851eac640 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs @@ -168,7 +168,7 @@ public static void Main(string[] args) private string VerifyAppBuilds(TestAsset testAsset, string prefix) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); buildCommand .Execute() diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs index 479a30b06e9c..1b9d4749394b 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs @@ -41,7 +41,7 @@ public void It_builds_the_project_successfully() void VerifyAppBuilds(TestAsset testAsset) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); buildCommand .Execute() @@ -84,7 +84,7 @@ public void The_clean_target_removes_all_files_from_the_output_folder() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { "TestApp.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs index 3ba7af9fa07a..fbe7902688ed 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs @@ -83,7 +83,7 @@ public void It_respects_opt_outs(string attributeToOptOut) expectedInfo.Add("TargetFrameworkAttribute", $".NETCoreApp,Version=v{ToolsetInfo.CurrentTargetFrameworkVersion}"); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, "Release").FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, "HelloWorld.dll"); var actualInfo = AssemblyInfo.Get(assemblyPath); actualInfo.Should().Equal(expectedInfo); @@ -398,7 +398,7 @@ public void TestPreviewFeatures(bool enablePreviewFeatures, bool generateRequire var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(targetFramework).FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, "HelloWorld.dll"); var parameterlessAttributes = AssemblyInfo.GetParameterlessAttributes(assemblyPath); bool contains = false; @@ -457,7 +457,7 @@ public void It_doesnt_includes_requires_preview_features() var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework).FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, "HelloWorld.dll"); var parameterlessAttributes = AssemblyInfo.GetParameterlessAttributes(assemblyPath); bool contains = false; @@ -686,7 +686,7 @@ public void GenerateUserSecretsForTestProject() .Should() .Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(testTestProject.TargetFrameworks).FullName, testTestProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testTestProject.Name + ".dll"); AssemblyInfo.Get(assemblyPath)["UserSecretsIdAttribute"].Should().Be("SecretsIdValue"); } @@ -718,7 +718,7 @@ public void It_includes_repository_url(bool privateRepo) var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(testProject.TargetFrameworks).FullName, testProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testProject.Name + ".dll"); AssemblyInfo.Get(assemblyPath)["AssemblyMetadataAttribute"].Should().Be("RepositoryUrl:" + fakeUrl); } @@ -740,12 +740,12 @@ public void It_does_not_write_to_undefined_assembly_metadata_attribute(string ta var testAsset = _testAssetsManager.CreateTestProject(testProject, identifier: targetFramework); - var buildCommand = new BuildCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var buildCommand = new BuildCommand(testAsset); buildCommand.Execute() .Should() .Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(targetFramework).FullName, testProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testProject.Name + ".dll"); if (containsAttribute) { diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs index 28498a7cfaee..a7e09f8a3a4f 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs @@ -51,7 +51,7 @@ public void It_copies_local_package_dependencies_on_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); var expectedFiles = new [] { @@ -93,7 +93,7 @@ public void It_does_not_copy_local_package_dependencies_when_requested_not_to() buildCommand.Execute().Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", $"{ProjectName}.deps.json", @@ -131,7 +131,7 @@ public void It_copies_local_specific_runtime_package_dependencies_on_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: testProject.TargetFrameworks, runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", @@ -169,7 +169,7 @@ public void It_does_not_copy_local_package_dependencies_for_lib_projects() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}.deps.json", $"{ProjectName}.dll", @@ -202,7 +202,7 @@ public void It_copies_local_package_dependencies_for_lib_projects_when_requested .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}.deps.json", $"{ProjectName}.dll", @@ -342,7 +342,7 @@ public void It_copies_local_all_assets_on_self_contained_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: testProject.TargetFrameworks, runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); outputDirectory.Should().HaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs index 166346adf201..cf70e90d49a2 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs @@ -18,7 +18,7 @@ public class GivenThatWeHaveAPpContentFile : SdkTest public GivenThatWeHaveAPpContentFile(ITestOutputHelper log) : base(log) {} - [Fact] + [Fact(Skip = "https://github.com/NuGet/Home/issues/12323")] public void It_copies_to_output_successfully() { var packageReference = GetPackageReference(); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs index f8baf8f293de..c38f1764006e 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs @@ -285,9 +285,9 @@ public void It_copies_content_transitively() .Should() .Pass(); - var contentPath = Path.Combine(testAsset.Path, testProjectC.Name, "bin", "Debug", targetFramework, "a.txt"); + var contentPath = Path.Combine(testProjectC.GetOutputDirectory(testAsset.Path), "a.txt"); File.Exists(contentPath).Should().BeTrue(); - var binDir = new DirectoryInfo(Path.Combine(testAsset.Path, testProjectC.Name, "bin")); + var binDir = new DirectoryInfo(Path.GetDirectoryName(contentPath)); binDir.Delete(true); buildCommand diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs index ca7d76c92f78..e6b0a5293de3 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs @@ -927,7 +927,6 @@ private string RestoreAndBuild(TestAsset testAsset, TestProject testProject) .Pass(); var outputDirectory = buildCommand.GetOutputDirectory( - testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); return Path.Combine(outputDirectory.FullName, testProject.Name + ".dll"); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs index 3d5ccb986cd7..34fb21dd3ab9 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs @@ -222,7 +222,7 @@ public void FilesFromAspNetCoreSharedFrameworkAreNotIncluded() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); + var outputDirectory = buildCommand.GetOutputDirectory(); outputDirectory.Should().NotHaveFile("Microsoft.Extensions.DependencyInjection.Abstractions.dll"); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs index d2f78b0c1559..1ea90238295d 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs @@ -207,7 +207,7 @@ public void It_chooses_lowest_netfx_in_default_atf() var buildCommand = new BuildCommand(testProjectTestAsset); buildCommand.Execute().Should().Pass(); - var referencedDll = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework).File("net462_net472_pkg.dll").FullName; + var referencedDll = buildCommand.GetOutputDirectory().File("net462_net472_pkg.dll").FullName; var referencedTargetFramework = AssemblyInfo.Get(referencedDll)["TargetFrameworkAttribute"]; referencedTargetFramework.Should().Be(".NETFramework,Version=v4.6.2"); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs b/src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs index 86de89a9c09a..7a1acc3802b2 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs @@ -160,7 +160,7 @@ public void TestGlobalPropertyFlowToLibraryWithRuntimeIdentifier(bool passSelfCo bool buildingSelfContained = passSelfContained || passRuntimeIdentifier; ValidateProperties(testAsset, _testProject, expectSelfContained: buildingSelfContained, expectRuntimeIdentifier: buildingSelfContained); - ValidateProperties(testAsset, _referencedProject, expectSelfContained: passSelfContained, expectRuntimeIdentifier: buildingSelfContained, + ValidateProperties(testAsset, _referencedProject, expectSelfContained: passSelfContained, expectRuntimeIdentifier: true, // Right now passing "--self-contained" also causes the RuntimeIdentifier to be passed as a global property. // That should change with https://github.com/dotnet/sdk/pull/26143, which will likely require updating this and other tests in this class expectedRuntimeIdentifier: buildingSelfContained ? "" : _referencedProject.RuntimeIdentifier); @@ -252,14 +252,6 @@ private static void ValidateProperties(TestAsset testAsset, TestProject testProj { targetFramework = targetFramework ?? testProject.TargetFrameworks; - - if (string.IsNullOrEmpty(expectedRuntimeIdentifier) && (expectSelfContained || expectRuntimeIdentifier)) - { - // RuntimeIdentifier might be inferred, so look at the output path to figure out what the actual value used was - string dir = (Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Debug", targetFramework)); - expectedRuntimeIdentifier = Path.GetFileName(Directory.GetDirectories(dir).Single()); - } - var properties = testProject.GetPropertyValues(testAsset.TestRoot, targetFramework: targetFramework); if (expectSelfContained) { @@ -270,7 +262,23 @@ private static void ValidateProperties(TestAsset testAsset, TestProject testProj properties["SelfContained"].ToLowerInvariant().Should().BeOneOf("false", ""); } - properties["RuntimeIdentifier"].Should().Be(expectedRuntimeIdentifier); + + if (expectRuntimeIdentifier) + { + if (!string.IsNullOrEmpty(expectedRuntimeIdentifier)) + { + properties["RuntimeIdentifier"].Should().Be(expectedRuntimeIdentifier); + } + else + { + properties["RuntimeIdentifier"].Should().NotBeEmpty(); + } + } + else + { + properties["RuntimeIdentifier"].Should().BeEmpty(); + } + } } diff --git a/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs b/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs index eadff3e804e3..6e84418d85d2 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs @@ -54,7 +54,7 @@ public void NonCopyLocalProjectReferenceDoesNotGoToDeps() var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); + var outputDirectory = buildCommand.GetOutputDirectory(); using var stream = File.OpenRead(outputDirectory.File("MainProject.deps.json").FullName); using var reader = new DependencyContextJsonReader(); diff --git a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs index 79031d63a8f1..50003cfa157d 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs @@ -119,7 +119,7 @@ private void RunTest(string buildFailureCode = null, [CallerMemberName] string c { var publishCommand = new PublishCommand(testProjectInstance); - outputDirectory = publishCommand.GetOutputDirectory(MainProject.TargetFrameworks, runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; + outputDirectory = publishCommand.GetOutputDirectory(runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; buildOrPublishCommand = publishCommand; } @@ -127,7 +127,7 @@ private void RunTest(string buildFailureCode = null, [CallerMemberName] string c { var buildCommand = new BuildCommand(testProjectInstance); - outputDirectory = buildCommand.GetOutputDirectory(MainProject.TargetFrameworks, runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; + outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; buildOrPublishCommand = buildCommand; } diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs index 5b98effe54ac..2a7dfc3f9626 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs @@ -54,7 +54,7 @@ public GetValuesCommand(TestAsset testAsset, : base(testAsset, "WriteValuesToFile", relativePathToProject: null) { - _targetFramework = targetFramework ?? testAsset.TestProject?.TargetFrameworks; + _targetFramework = targetFramework ?? OutputPathCalculator.FromTestAsset(ProjectFile, testAsset).TryGetTargetFramework(); _targetFramework = _targetFramework.Contains(";") ? "" : _targetFramework; _valueName = valueName; @@ -119,7 +119,7 @@ protected override SdkCommandSpec CreateCommand(IEnumerable args) File.WriteAllText(injectTargetPath, injectTargetContents); - var outputDirectory = GetOutputDirectory(_targetFramework); + var outputDirectory = GetValuesDirectory(_targetFramework); outputDirectory.Create(); return TestContext.Current.ToolsetUnderTest.CreateCommandForTarget(TargetName, newArgs); @@ -133,7 +133,7 @@ public List GetValues() public List<(string value, Dictionary metadata)> GetValuesWithMetadata() { string outputFilename = $"{_valueName}Values.txt"; - var outputDirectory = GetOutputDirectory(_targetFramework, Configuration ?? "Debug"); + var outputDirectory = GetValuesDirectory(_targetFramework, Configuration ?? "Debug"); string fullFileName = Path.Combine(outputDirectory.FullName, outputFilename); if (File.Exists(fullFileName)) @@ -166,5 +166,17 @@ public List GetValues() return new List<(string value, Dictionary metadata)>(); } } + + DirectoryInfo GetValuesDirectory(string targetFramework = "", string configuration = "Debug") + { + // Use a consistent directory format to put the values text file in, so we don't have to worry about + // whether the project uses the artifacts output format or not + + targetFramework = targetFramework ?? string.Empty; + configuration = configuration ?? string.Empty; + + string output = Path.Combine(ProjectRootPath, "bin", configuration, targetFramework); + return new DirectoryInfo(output); + } } } diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs index f7bd715e74a3..f79daec1fba4 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs @@ -22,6 +22,8 @@ public class MSBuildCommand : TestCommand public string ProjectFile { get; } + public TestAsset TestAsset { get; } + public string FullPathProjectFile => Path.Combine(ProjectRootPath, ProjectFile); public MSBuildCommand(ITestOutputHelper log, string target, string projectRootPath, string relativePathToProject = null) @@ -37,6 +39,7 @@ public MSBuildCommand(ITestOutputHelper log, string target, string projectRootPa public MSBuildCommand(TestAsset testAsset, string target, string relativePathToProject = null) : this(testAsset.Log, target, testAsset.TestRoot, relativePathToProject ?? testAsset.TestProject?.Name) { + TestAsset = testAsset; } internal static string FindProjectFile(ref string projectRootPath, string relativePathToProject) @@ -72,8 +75,13 @@ internal static string FindProjectFile(ref string projectRootPath, string relati return buildProjectFiles[0]; } - public virtual DirectoryInfo GetOutputDirectory(string targetFramework, string configuration = "Debug", string runtimeIdentifier = "") + public virtual DirectoryInfo GetOutputDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") { + if (TestAsset != null) + { + return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetOutputDirectory(targetFramework, configuration, runtimeIdentifier)); + } + targetFramework = targetFramework ?? string.Empty; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? string.Empty; @@ -82,8 +90,13 @@ public virtual DirectoryInfo GetOutputDirectory(string targetFramework, string c return new DirectoryInfo(output); } - public virtual DirectoryInfo GetIntermediateDirectory(string targetFramework, string configuration = "Debug", string runtimeIdentifier = "") + public virtual DirectoryInfo GetIntermediateDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") { + if (TestAsset != null) + { + return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetIntermediateDirectory(targetFramework, configuration, runtimeIdentifier)); + } + targetFramework = targetFramework ?? string.Empty; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? string.Empty; diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs index 57298deb5cce..a026e638128c 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs @@ -24,13 +24,23 @@ public PublishCommand(TestAsset testAsset, string relativePathToProject = null) } - public override DirectoryInfo GetOutputDirectory(string targetFramework = "netcoreapp1.1", string configuration = "Debug", string runtimeIdentifier = "") + public override DirectoryInfo GetOutputDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") { + if (TestAsset != null) + { + return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetPublishDirectory(targetFramework, configuration, runtimeIdentifier)); + } + + if (string.IsNullOrEmpty(targetFramework)) + { + targetFramework = "netcoreapp1.1"; + } + DirectoryInfo baseDirectory = base.GetOutputDirectory(targetFramework, configuration, runtimeIdentifier); return new DirectoryInfo(Path.Combine(baseDirectory.FullName, PublishSubfolderName)); } - public string GetPublishedAppPath(string appName, string targetFramework = "netcoreapp1.1") + public string GetPublishedAppPath(string appName, string targetFramework = "") { return Path.Combine(GetOutputDirectory(targetFramework).FullName, $"{appName}.dll"); } diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs new file mode 100644 index 000000000000..e1f73938e955 --- /dev/null +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -0,0 +1,199 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.NET.TestFramework.ProjectConstruction; +using System.Xml.Linq; +using NuGet.Frameworks; +using Xunit.Sdk; + +namespace Microsoft.NET.TestFramework +{ + class OutputPathCalculator + { + public string ProjectPath { get; set; } + public string TargetFramework { get; set; } + public string RuntimeIdentifier { get; set; } + public bool? UseArtifactsOutput { get; set; } + + + public bool IsSdkProject { get; set; } = true; + + + public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset testAsset) + { + if (testAsset.TestProject != null) + { + return FromTestProject(projectPath, testAsset.TestProject); + } + + var calculator = new OutputPathCalculator() + { + ProjectPath = projectPath, + }; + + return calculator; + } + + public static OutputPathCalculator FromTestProject(string projectPath, TestProject testProject) + { + var calculator = new OutputPathCalculator() + { + ProjectPath = projectPath, + TargetFramework = testProject.TargetFrameworks, + RuntimeIdentifier = testProject.RuntimeIdentifier, + UseArtifactsOutput = testProject.UseArtifactsOutput, + IsSdkProject = testProject.IsSdkProject + }; + + return calculator; + } + + public string TryGetTargetFramework() + { + string targetFramework = TargetFramework; + + if (string.IsNullOrEmpty(targetFramework)) + { + var project = XDocument.Load(ProjectPath); + + var ns = project.Root.Name.Namespace; + + var propertyGroup = project.Root.Elements(ns + "PropertyGroup").First(); + var targetFrameworksElement = propertyGroup.Element(ns + "TargetFrameworks"); + if (targetFrameworksElement != null) + { + targetFramework = targetFrameworksElement.Value; + } + else + { + var targetFrameworkElement = propertyGroup.Element(ns + "TargetFramework"); + targetFramework = targetFrameworkElement?.Value; + } + } + return targetFramework ?? ""; + } + + private bool UsesArtifactsFolder() + { + if (UseArtifactsOutput.HasValue) + { + return UseArtifactsOutput.Value; + } + + if (!IsSdkProject) + { + return false; + } + + string targetFramework = TryGetTargetFramework(); + + if (targetFramework == null || targetFramework.Contains(';')) + { + return false; + } + + var framework = NuGetFramework.Parse(targetFramework); + if (framework.Framework != ".NETCoreApp") + { + return false; + } + if (framework.Version.Major >= 8) + { + return true; + } + else + { + return false; + } + } + + public string GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") + { + if (UsesArtifactsFolder()) + { + string pivot = configuration.ToLowerInvariant(); + if (!string.IsNullOrEmpty(targetFramework)) + { + pivot += "_" + targetFramework; + } + if (string.IsNullOrEmpty(runtimeIdentifier)) + { + runtimeIdentifier = RuntimeIdentifier; + } + if (!string.IsNullOrEmpty(runtimeIdentifier)) + { + pivot += "_" + runtimeIdentifier; + } + return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "artifacts", "bin", pivot); + } + else + { + if (string.IsNullOrEmpty(targetFramework)) + { + targetFramework = TryGetTargetFramework(); + } + + configuration = configuration ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? string.Empty; + + string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration, targetFramework, runtimeIdentifier); + return output; + } + } + + public string GetPublishDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") + { + if (UsesArtifactsFolder()) + { + string pivot = configuration.ToLowerInvariant(); + if (!string.IsNullOrEmpty(targetFramework)) + { + pivot += "_" + targetFramework; + } + if (string.IsNullOrEmpty(runtimeIdentifier)) + { + runtimeIdentifier = RuntimeIdentifier; + } + if (!string.IsNullOrEmpty(runtimeIdentifier)) + { + pivot += "_" + runtimeIdentifier; + } + return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "artifacts", "publish", pivot); + } + else + { + if (string.IsNullOrEmpty(targetFramework)) + { + targetFramework = TryGetTargetFramework(); + } + + configuration = configuration ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? string.Empty; + + string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration, targetFramework, runtimeIdentifier, "publish"); + return output; + } + } + + public string GetIntermediateDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") + { + if (string.IsNullOrEmpty(targetFramework)) + { + targetFramework = TryGetTargetFramework(); + } + + configuration = configuration ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? string.Empty; + + string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "obj", configuration, targetFramework, runtimeIdentifier); + return output; + } + } +} diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs index 11d978947895..c1e055b36e0a 100644 --- a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs +++ b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs @@ -49,6 +49,8 @@ public TestProject([CallerMemberName] string name = null) public string TargetFrameworkProfile { get; set; } + public bool? UseArtifactsOutput { get; set; } + public List ReferencedProjects { get; } = new List(); public List References { get; } = new List(); @@ -499,5 +501,16 @@ public static bool ReferenceAssembliesAreInstalled(TargetDotNetFrameworkVersion var referenceAssemblies = ToolLocationHelper.GetPathToDotNetFrameworkReferenceAssemblies(targetFrameworkVersion); return referenceAssemblies != null; } + + private OutputPathCalculator GetOutputPathCalculator(string testRoot) + { + return OutputPathCalculator.FromTestProject(Path.Combine(testRoot, Name, Name + ".csproj"), this); + } + + public string GetOutputDirectory(string testRoot, string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") + { + return GetOutputPathCalculator(testRoot) + .GetOutputDirectory(targetFramework, configuration, runtimeIdentifier); + } } } diff --git a/src/Tests/Microsoft.NET.TestFramework/TestAsset.cs b/src/Tests/Microsoft.NET.TestFramework/TestAsset.cs index 42ae7f9780f0..48a8af4e3813 100644 --- a/src/Tests/Microsoft.NET.TestFramework/TestAsset.cs +++ b/src/Tests/Microsoft.NET.TestFramework/TestAsset.cs @@ -10,6 +10,7 @@ using System.Collections.Generic; using Xunit.Abstractions; using Microsoft.NET.TestFramework.ProjectConstruction; +using NuGet.Frameworks; namespace Microsoft.NET.TestFramework { @@ -111,39 +112,46 @@ public TestAsset WithSource() public TestAsset UpdateProjProperty(string propertyName, string variableName, string targetValue) { - return WithTargetFramework( + return WithProjectChanges( p => { var ns = p.Root.Name.Namespace; var getNode = p.Root.Elements(ns + "PropertyGroup").Elements(ns + propertyName).FirstOrDefault(); getNode ??= p.Root.Elements(ns + "PropertyGroup").Elements(ns + $"{propertyName}s").FirstOrDefault(); getNode?.SetValue(getNode?.Value.Replace(variableName, targetValue)); - }, targetValue); + }); } public TestAsset WithTargetFramework(string targetFramework, string projectName = null) { - return WithTargetFramework( + if (targetFramework == null) + { + return this; + } + return WithProjectChanges( p => { var ns = p.Root.Name.Namespace; p.Root.Elements(ns + "PropertyGroup").Elements(ns + "TargetFramework").Single().SetValue(targetFramework); }, - targetFramework, projectName); } public TestAsset WithTargetFrameworks(string targetFrameworks, string projectName = null) { - return WithTargetFramework( + if (targetFrameworks == null) + { + return this; + } + return WithProjectChanges( p => { var ns = p.Root.Name.Namespace; var propertyGroup = p.Root.Elements(ns + "PropertyGroup").First(); propertyGroup.Elements(ns + "TargetFramework").SingleOrDefault()?.Remove(); + propertyGroup.Elements(ns + "TargetFrameworks").SingleOrDefault()?.Remove(); propertyGroup.Add(new XElement(ns + "TargetFrameworks", targetFrameworks)); }, - targetFrameworks, projectName); } @@ -159,13 +167,8 @@ public TestAsset WithTargetFrameworkOrFrameworks(string targetFrameworkOrFramewo } } - private TestAsset WithTargetFramework(Action actionOnProject, string targetFramework, string projectName = null) + private TestAsset WithProjectChanges(Action actionOnProject, string projectName = null) { - if (string.IsNullOrEmpty(targetFramework)) - { - return this; - } - return WithProjectChanges((path, project) => { if (!string.IsNullOrEmpty(projectName)) From 0d8ed7fa1ddce19879aae19e68b61e9221001cde Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 5 Jan 2023 19:35:51 -0500 Subject: [PATCH 03/27] Update publish tests for new output path format --- ...atWeWantToPublishAFrameworkDependentApp.cs | 3 +- ...enThatWeWantToPublishAHelloWorldProject.cs | 4 +- ...WeWantToPublishAProjectWithDependencies.cs | 5 +- .../GivenThatWeWantToPublishAnAotApp.cs | 26 ++++----- ...WeWantToPublishAnAppWithLibrariesAndRid.cs | 4 +- .../GivenThatWeWantToPublishIncrementally.cs | 55 ++++++++++++------- ...WithGeneratePackageOnBuildAndPackAsTool.cs | 8 +-- .../PublishWpfApp.cs | 4 +- .../RuntimeIdentifiersTests.cs | 8 +-- .../Commands/DotnetPublishCommand.cs | 1 + .../OutputPathCalculator.cs | 10 ++-- 11 files changed, 70 insertions(+), 58 deletions(-) diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs index 6bf37290983a..6b087595a204 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs @@ -41,6 +41,7 @@ public void It_publishes_with_or_without_apphost(string useAppHost, string targe var testAsset = _testAssetsManager .CopyTestAsset(TestProjectName, $"It_publishes_with_or_without_apphost_{(useAppHost ?? "null")}_{targetFramework}") + .WithTargetFramework(targetFramework) .WithSource(); var msbuildArgs = new List() @@ -48,7 +49,7 @@ public void It_publishes_with_or_without_apphost(string useAppHost, string targe $"/p:RuntimeIdentifier={runtimeIdentifier}", $"/p:TestRuntimeIdentifier={runtimeIdentifier}", "/p:SelfContained=false", - $"/p:TargetFramework={targetFramework}" + //$"/p:TargetFramework={targetFramework}" }; if (useAppHost != null) diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs index 4a8deecd2b7b..65c5bf0d2d96 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs @@ -58,7 +58,7 @@ public void It_publishes_portable_apps_to_the_publish_folder_and_the_app_should_ publishResult.Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(targetFramework); - var outputDirectory = publishDirectory.Parent; + var outputDirectory = new BuildCommand(helloWorldAsset).GetOutputDirectory(targetFramework); var filesPublished = new[] { "HelloWorld.dll", @@ -104,7 +104,7 @@ public void It_publishes_self_contained_apps_to_the_publish_folder_and_the_app_s var publishDirectory = publishCommand.GetOutputDirectory( targetFramework: targetFramework, runtimeIdentifier: rid); - var outputDirectory = publishDirectory.Parent; + var outputDirectory = new BuildCommand(helloWorldAsset).GetOutputDirectory(targetFramework, runtimeIdentifier: rid); var selfContainedExecutable = $"HelloWorld{Constants.ExeSuffix}"; var filesPublished = new[] { diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs index 99828d4fc9e5..fdf0566fe8e4 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs @@ -213,7 +213,7 @@ public void It_publishes_documentation_files(string properties, bool expectAppDo .CopyTestAsset("KitchenSink", identifier: $"{expectAppDocPublished}_{expectLibProjectDocPublished}") .WithSource(); - var publishCommand = new PublishCommand(Log, Path.Combine(kitchenSinkAsset.TestRoot, "TestApp")); + var publishCommand = new PublishCommand(kitchenSinkAsset, "TestApp"); var publishArgs = properties.Split(';').Select(p => $"/p:{p}").ToArray(); var publishResult = publishCommand.Execute(publishArgs); @@ -269,10 +269,9 @@ public void It_publishes_referenced_assembly_documentation(string property, bool }; var appAsset = _testAssetsManager.CreateTestProject(appProject, identifier: identifier); - var appSourcePath = Path.Combine(appAsset.TestRoot, "TestApp"); new RestoreCommand(appAsset, "TestApp").Execute().Should().Pass(); - var appPublishCommand = new PublishCommand(Log, appSourcePath); + var appPublishCommand = new PublishCommand(appAsset); var appPublishResult = appPublishCommand.Execute("/p:" + property); appPublishResult.Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs index 44ba08a54016..cb9154770b0d 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs @@ -53,7 +53,7 @@ public void NativeAot_hw_runs_with_no_warnings_when_PublishAot_is_enabled(string } var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:UseCurrentRuntimeIdentifier=true") .Should().Pass() @@ -96,7 +96,7 @@ public void NativeAot_hw_runs_with_no_warnings_when_PublishAot_is_false(string t testProject.AdditionalProperties["PublishAot"] = "false"; var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:RuntimeIdentifier={rid}") .Should().Pass() @@ -144,7 +144,7 @@ public void NativeAot_app_runs_in_debug_with_no_config_when_PublishAot_is_enable // .WithProjectChanges(project => AddRuntimeConfigOption(project)); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:UseCurrentRuntimeIdentifier=true") .Should().Pass(); @@ -202,7 +202,7 @@ public void NativeAot_app_runs_in_release_with_no_config_when_PublishAot_is_enab // .WithProjectChanges(project => AddRuntimeConfigOption(project)); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:UseCurrentRuntimeIdentifier=true") .Should().Pass(); @@ -294,7 +294,7 @@ public void NativeAot_hw_runs_with_PackageReference_PublishAot_is_enabled(string } var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand= new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:UseCurrentRuntimeIdentifier=true") .Should().Pass() @@ -348,7 +348,7 @@ public void NativeAot_hw_runs_with_PackageReference_PublishAot_is_empty(string t } var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:RuntimeIdentifier={rid}") .Should().Pass(); @@ -380,7 +380,7 @@ public void NativeAot_hw_runs_with_cross_target_PublishAot_is_enabled(string tar var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:RuntimeIdentifier={rid}") .Should().Pass(); @@ -411,7 +411,7 @@ public void NativeAot_hw_runs_with_cross_PackageReference_PublishAot_is_enabled( var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:RuntimeIdentifier={rid}") .Should().Pass() @@ -446,7 +446,7 @@ public void NativeAot_hw_runs_with_cross_PackageReference_PublishAot_is_empty(st var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute($"/p:RuntimeIdentifier={rid}") .Should().Pass(); @@ -569,7 +569,7 @@ public void NativeAot_compiler_runs_when_PublishAot_is_enabled(string targetFram testProject.AdditionalProperties["UseCurrentRuntimeIdentifier"] = "true"; var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute() .Should().Pass() @@ -614,7 +614,7 @@ public void Warnings_are_generated_even_with_analyzers_disabled(string targetFra testProject.AdditionalProperties["UseCurrentRuntimeIdentifier"] = "true"; var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute() .Should().Pass() @@ -653,7 +653,7 @@ public void NativeAotStaticLib_only_runs_when_switch_is_enabled(string targetFra testProject.AdditionalProperties["SelfContained"] = "true"; var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute() .Should().Pass(); @@ -686,7 +686,7 @@ public void NativeAotSharedLib_only_runs_when_switch_is_enabled(string targetFra testProject.AdditionalProperties["SelfContained"] = "true"; var testAsset = _testAssetsManager.CreateTestProject(testProject); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand .Execute() .Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs index 1488993bcaaa..26e1954d226a 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs @@ -94,8 +94,6 @@ private void PublishAppWithLibraryAndRid(bool selfContained, out DirectoryInfo p .CopyTestAsset("AppWithLibraryAndRid", $"PublishAppWithLibraryAndRid{selfContained}") .WithSource(); - var projectPath = Path.Combine(testAsset.TestRoot, "App"); - var msbuildArgs = new List() { $"/p:RuntimeIdentifier={runtimeIdentifier}", @@ -116,7 +114,7 @@ private void PublishAppWithLibraryAndRid(bool selfContained, out DirectoryInfo p .Should() .Pass(); - var publishCommand = new PublishCommand(Log, projectPath); + var publishCommand = new PublishCommand(testAsset, "App"); publishCommand .Execute(msbuildArgs.ToArray()) diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs index 19fcfd76ea37..d5eacc7447b4 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs @@ -32,22 +32,27 @@ public void It_cleans_before_single_file_publish() }; var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); - var publishDir = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Debug", testProject.TargetFrameworks, testProject.RuntimeIdentifier, "publish"); - var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } - .Select(ending => testProject.Name + ending); - var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); + // Publish normally - new PublishCommand(testAsset) + var publishCommand = new PublishCommand(testAsset); + + publishCommand .Execute() .Should() .Pass(); + + var publishDir = publishCommand.GetOutputDirectory().FullName; + var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } + .Select(ending => testProject.Name + ending); + var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); + CheckPublishOutput(publishDir, expectedSingleExeFiles.Concat(expectedNonSingleExeFiles), null); File.WriteAllText(Path.Combine(publishDir, "UserData.txt"), string.Empty); // Publish as a single file - new PublishCommand(testAsset) + publishCommand .Execute(@"/p:PublishSingleFile=true") .Should() .Pass(); @@ -66,14 +71,17 @@ public void It_cleans_between_renames() }; var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); - var publishDir = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Debug", testProject.TargetFrameworks, testProject.RuntimeIdentifier, "publish"); - var expectedSingleExeFileExtensions = new string[] { ".exe", ".pdb" }; // Publish as a single file - new PublishCommand(testAsset) + var publishCommand = new PublishCommand(testAsset); + publishCommand .Execute(@"/p:PublishSingleFile=true") .Should() .Pass(); + + var publishDir = publishCommand.GetOutputDirectory().FullName; + var expectedSingleExeFileExtensions = new string[] { ".exe", ".pdb" }; + CheckPublishOutput(publishDir, expectedSingleExeFileExtensions.Select(ending => testProject.Name + ending), null); File.WriteAllText(Path.Combine(publishDir, "UserData.txt"), string.Empty); @@ -105,21 +113,23 @@ public void It_cleans_between_single_file_publishes() }; var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); - var publishDir = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Debug", testProject.TargetFrameworks, testProject.RuntimeIdentifier, "publish"); - var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); - // Publish as a single file - new PublishCommand(testAsset) + var publishCommand = new PublishCommand(testAsset); + publishCommand .Execute(@"/p:PublishSingleFile=true") .Should() .Pass(); + + var publishDir = publishCommand.GetOutputDirectory().FullName; + var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); + CheckPublishOutput(publishDir, expectedSingleExeFiles, null); // Write a file that would have been in a full publish, should still be there after another single file publish File.WriteAllText(Path.Combine(publishDir, testProject.Name + ".dll"), string.Empty); // Publish as a single file - new PublishCommand(testAsset) + publishCommand .Execute(@"/p:PublishSingleFile=true") .Should() .Pass(); @@ -139,22 +149,25 @@ public void It_cleans_before_trimmed_single_file_publish() testProject.AdditionalProperties["PublishTrimmed"] = "true"; var testAsset = _testAssetsManager.CreateTestProject(testProject, testProject.Name); - var publishDir = Path.Combine(testAsset.TestRoot, testProject.Name, "bin", "Debug", testProject.TargetFrameworks, testProject.RuntimeIdentifier, "publish"); - var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } - .Select(ending => testProject.Name + ending); - var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); - // Publish trimmed - new PublishCommand(testAsset) + var publishCommand = new PublishCommand(testAsset); + + publishCommand .Execute() .Should() .Pass(); + + var publishDir = publishCommand.GetOutputDirectory().FullName; + var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } + .Select(ending => testProject.Name + ending); + var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); + CheckPublishOutput(publishDir, expectedSingleExeFiles.Concat(expectedNonSingleExeFiles), null); File.WriteAllText(Path.Combine(publishDir, "UserData.txt"), string.Empty); // Publish as a single file - new PublishCommand(testAsset) + publishCommand .Execute(@"/p:PublishSingleFile=true") .Should() .Pass(); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs index d305c1452745..53d74c6861a7 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs @@ -26,8 +26,8 @@ public GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool(ITestOutp [Theory] [InlineData(false, false)] [InlineData(false, true)] - [InlineData(true, false)] - [InlineData(true, true)] + [InlineData(true, false, Skip = "https://github.com/NuGet/Home/issues/12323")] + [InlineData(true, true, Skip = "https://github.com/NuGet/Home/issues/12323")] public void It_publishes_successfully(bool generatePackageOnBuild, bool packAsTool) { Console.WriteLine(generatePackageOnBuild.ToString() + packAsTool.ToString()); @@ -54,8 +54,8 @@ public void It_publishes_successfully(bool generatePackageOnBuild, bool packAsTo [Theory] [InlineData(false, false)] [InlineData(false, true)] - [InlineData(true, false)] - [InlineData(true, true)] + [InlineData(true, false, Skip = "https://github.com/NuGet/Home/issues/12323")] + [InlineData(true, true, Skip = "https://github.com/NuGet/Home/issues/12323")] public void It_builds_with_GeneratePackageOnBuild_successfully(bool generatePackageOnBuild, bool packAsTool) { TestAsset testAsset = _testAssetsManager diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs index 75a69367d90a..d2c9a9ed6c8b 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs @@ -57,13 +57,13 @@ public void It_publishes_and_runs_self_contained_wpf_app() .Should() .Pass(); - var publishDirectory = publishCommand.GetOutputDirectory( + var publishDirectory = OutputPathCalculator.FromTestAsset(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).GetPublishDirectory( targetFramework: targetFramework, runtimeIdentifier: rid); var runAppCommand = new SdkCommandSpec() { - FileName = Path.Combine(publishDirectory.FullName, Path.GetFileName(testDir.Path) + ".exe") + FileName = Path.Combine(publishDirectory, Path.GetFileName(testDir.Path) + ".exe") }; runAppCommand.Environment["DOTNET_ROOT"] = Path.GetDirectoryName(TestContext.Current.ToolsetUnderTest.DotNetHostPath); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs b/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs index 1bc6143b14a8..62c3354ae97e 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs @@ -102,6 +102,8 @@ public void BuildWithUseCurrentRuntimeIdentifier() // Use a test-specific packages folder testProject.AdditionalProperties["RestorePackagesPath"] = @"$(MSBuildProjectDirectory)\..\pkg"; + testProject.RecordProperties("RuntimeIdentifier"); + var testAsset = _testAssetsManager.CreateTestProject(testProject); var buildCommand = new BuildCommand(testAsset); @@ -110,12 +112,10 @@ public void BuildWithUseCurrentRuntimeIdentifier() .Should() .Pass(); - string targetFrameworkOutputDirectory = Path.Combine(buildCommand.GetNonSDKOutputDirectory().FullName, testProject.TargetFrameworks); - string outputDirectoryWithRuntimeIdentifier = Directory.EnumerateDirectories(targetFrameworkOutputDirectory, "*", SearchOption.AllDirectories).FirstOrDefault(); - outputDirectoryWithRuntimeIdentifier.Should().NotBeNullOrWhiteSpace(); + testProject.GetPropertyValues(testAsset.TestRoot)["RuntimeIdentifier"].Should().NotBeNullOrWhiteSpace(); var selfContainedExecutable = $"{testProject.Name}{Constants.ExeSuffix}"; - string selfContainedExecutableFullPath = Path.Combine(outputDirectoryWithRuntimeIdentifier, selfContainedExecutable); + string selfContainedExecutableFullPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, selfContainedExecutable); new RunExeCommand(Log, selfContainedExecutableFullPath) .Execute() diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs index cbb67fc4ab82..77c29ef4fe6c 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Text; using Microsoft.DotNet.Cli.Utils; using Xunit.Abstractions; diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index e1f73938e955..2bd04f9c4761 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -15,7 +15,7 @@ namespace Microsoft.NET.TestFramework { - class OutputPathCalculator + public class OutputPathCalculator { public string ProjectPath { get; set; } public string TargetFramework { get; set; } @@ -26,9 +26,9 @@ class OutputPathCalculator public bool IsSdkProject { get; set; } = true; - public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset testAsset) + public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset testAsset = null) { - if (testAsset.TestProject != null) + if (testAsset?.TestProject != null) { return FromTestProject(projectPath, testAsset.TestProject); } @@ -119,7 +119,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura if (UsesArtifactsFolder()) { string pivot = configuration.ToLowerInvariant(); - if (!string.IsNullOrEmpty(targetFramework)) + if (TryGetTargetFramework().Contains(';') && !string.IsNullOrEmpty(targetFramework)) { pivot += "_" + targetFramework; } @@ -153,7 +153,7 @@ public string GetPublishDirectory(string targetFramework = null, string configur if (UsesArtifactsFolder()) { string pivot = configuration.ToLowerInvariant(); - if (!string.IsNullOrEmpty(targetFramework)) + if (TryGetTargetFramework().Contains(';') && !string.IsNullOrEmpty(targetFramework)) { pivot += "_" + targetFramework; } From 05aba591cdfcf6f4bc7c359a017711160eaaa2d7 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 5 Jan 2023 20:18:50 -0500 Subject: [PATCH 04/27] Revert removing TargetFramework from calls to GetOutputDirectory --- .../Microsoft.NET.Build.Tests/DepsFileSkipTests.cs | 6 ++++-- .../GivenFrameworkReferences.cs | 12 ++++++------ ...atWeWantRuntimeConfigInBuiltProjectOutputGroup.cs | 3 +-- .../GivenThatWeWantToBuildAComServerLibrary.cs | 6 +++--- .../GivenThatWeWantToBuildADesktopExe.cs | 12 ++++++------ .../GivenThatWeWantToBuildALibrary.cs | 10 +++++----- .../GivenThatWeWantToBuildANetCoreApp.cs | 10 +++++----- .../GivenThatWeWantToBuildASelfContainedApp.cs | 4 ++-- .../GivenThatWeWantToBuildAUnitTestProject.cs | 4 ++-- ...GivenThatWeWantToBuildAWindowsRuntimeComponent.cs | 2 +- ...GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs | 4 ++-- .../GivenThatWeWantToBuildAnAppWithLibrary.cs | 6 +++--- .../GivenThatWeWantToBuildAnAppWithSharedProject.cs | 2 +- ...antToBuildAnAppWithTransitiveNonSdkProjectRefs.cs | 2 +- ...hatWeWantToBuildAnAppWithTransitiveProjectRefs.cs | 4 ++-- .../GivenThatWeWantToControlGeneratedAssemblyInfo.cs | 12 ++++++------ .../GivenThatWeWantToCopyLocalDependencies.cs | 12 ++++++------ .../GivenThatWeWantToReferenceAnAssembly.cs | 1 + .../GivenThatWeWantToResolveConflicts.cs | 2 +- .../NonCopyLocalProjectReferenceTests.cs | 2 +- .../Microsoft.NET.Build.Tests/ReferenceExeTests.cs | 4 ++-- 21 files changed, 61 insertions(+), 59 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs b/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs index 2b0b1a396381..8795de444adf 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs @@ -138,7 +138,8 @@ public void ResourceAssetFromPackageCanBeSkipped() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, + runtimeIdentifier: testProject.RuntimeIdentifier).FullName; string depsJsonPath = Path.Combine(outputFolder, $"{testProject.Name}.deps.json"); @@ -177,7 +178,8 @@ private void TestSkippingFile(TestProject testProject, string filenameToSkip, st .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, + runtimeIdentifier: testProject.RuntimeIdentifier).FullName; string depsJsonPath = Path.Combine(outputFolder, $"{testProject.Name}.deps.json"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs index 649b07860ddf..57dc1e8e9dfd 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs @@ -60,7 +60,7 @@ public void Multiple_frameworks_are_written_to_runtimeconfig_when_there_are_mult .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -173,7 +173,7 @@ public void DuplicateFrameworksAreNotWrittenToRuntimeConfigWhenThereAreDifferent .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -702,7 +702,7 @@ public void TransitiveFrameworkReferenceFromProjectReference() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -755,7 +755,7 @@ public void TransitiveFrameworkReferenceFromPackageReference() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, testProject.Name + ".runtimeconfig.json"); var runtimeFrameworkNames = GetRuntimeFrameworks(runtimeConfigFile); @@ -1005,7 +1005,7 @@ private void TestFrameworkReferenceProfiles( if (selfContained) { - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); // The output directory should have the DLLs which are not referenced at compile time but are // still part of the shared framework. @@ -1116,7 +1116,7 @@ private ResolvedVersionInfo GetResolvedVersions(TestProject testProject, .Should() .Pass(); - var outputDirectory = command.GetOutputDirectory(runtimeIdentifier: testProject.RuntimeIdentifier); + var outputDirectory = command.GetOutputDirectory(testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); var resolvedVersions = ResolvedVersionInfo.ParseFrom(Path.Combine(outputDirectory.FullName, "resolvedversions.txt")); return resolvedVersions; diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs index c8756f4d978c..b7b358fc1afa 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs @@ -42,8 +42,7 @@ public void It_has_target_path_and_final_outputput_path_metadata(string targetFr command.Execute().Should().Pass(); - var outputDirectory = command.GetOutputDirectory(); - + var outputDirectory = command.GetOutputDirectory(targetFramework); var runtimeConfigFile = outputDirectory.File("HelloWorld.runtimeconfig.json"); var (_, metadata) = command.GetValuesWithMetadata().Single(i => i.value == runtimeConfigFile.FullName); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs index accf6b7ce8d3..55bd26380e35 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs @@ -33,7 +33,7 @@ public void It_copies_the_comhost_to_the_output_directory() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", @@ -69,7 +69,7 @@ public void It_generates_a_regfree_com_manifest_when_requested() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", @@ -102,7 +102,7 @@ public void It_embeds_the_clsidmap_in_the_comhost_when_rid_specified(string rid) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: rid); outputDirectory.Should().OnlyHaveFiles(new[] { "ComServer.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs index e3dde382db61..32602a94a7d2 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs @@ -878,7 +878,7 @@ public void It_places_package_xml_in_ref_folder_in_output_directory() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); // this xml is coming from ref folder outputDirectory.Should().HaveFile("System.Diagnostics.Debug.xml"); @@ -913,7 +913,7 @@ public void It_places_package_pdb_and_xml_files_in_output_directory(string enabl .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); HelperCheckPdbAndDocumentation(outputDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -956,7 +956,7 @@ public void It_places_package_pdb_and_xml_files_from_project_references_in_outpu .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(libraryProject.TargetFrameworks); HelperCheckPdbAndDocumentation(outputDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -997,7 +997,7 @@ public void It_places_package_pdb_and_xml_files_in_publish_directory(string enab .Should() .Pass(); - var publishDirectory = publishCommand.GetOutputDirectory(); + var publishDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); HelperCheckPdbAndDocumentation(publishDirectory, "Microsoft.Build", enableCopyDebugSymbolFilesFromPackages, enableDocumentationFilesFromPackages); } @@ -1033,9 +1033,9 @@ public void It_places_package_xml_files_in_output_directory_but_not_in_publish() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); - var publishDirectory = publishCommand.GetOutputDirectory(); + var publishDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().HaveFile("Microsoft.Build.xml"); publishDirectory.Should().NotHaveFile("Microsoft.Build.xml"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs index bf1a0a9aff74..ebaa47d7125b 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs @@ -44,7 +44,7 @@ public void It_builds_the_library_successfully(string targetFramework) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -166,7 +166,7 @@ public void It_creates_a_documentation_file(string language) .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory("netstandard1.5"); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -200,7 +200,7 @@ public void It_allows_us_to_override_the_documentation_file_name(string language .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory("netstandard1.5"); outputDirectory.Should().OnlyHaveFiles(new[] { "TestLibrary.dll", @@ -891,7 +891,7 @@ public void It_can_implicitly_define_predefined_Cultures_only(string targetFrame .Pass(); string runtimeConfigName = $"{testProj.Name}.runtimeconfig.json"; - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProj.TargetFrameworks); outputDirectory.Should().HaveFile(runtimeConfigName); string runtimeConfigFile = Path.Combine(outputDirectory.FullName, runtimeConfigName); @@ -946,7 +946,7 @@ public void It_can_build_with_dynamic_loading_enabled(string targetFramework, st .Pass(); string runtimeConfigName = $"{testProject.Name}.runtimeconfig.json"; - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().HaveFiles(new[] { runtimeConfigName, $"{testProject.Name}.runtimeconfig.json" diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs index db82ce9dc801..513a5c727005 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs @@ -365,7 +365,7 @@ public static void Main() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier ?? "").FullName; + string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks, runtimeIdentifier: runtimeIdentifier ?? "").FullName; new DotnetCommand(Log, Path.Combine(outputFolder, project.Name + ".dll")) .Execute() @@ -423,7 +423,7 @@ public void It_stops_generating_runtimeconfig_dev_json_after_net6_allow_property var buildCommand = new BuildCommand(_testAssetsManager.CreateTestProject(proj, identifier: targetFramework)); var runtimeconfigFile = Path.Combine( - buildCommand.GetOutputDirectory().FullName, + buildCommand.GetOutputDirectory(targetFramework).FullName, $"{proj.Name}.runtimeconfig.dev.json"); // GenerateRuntimeConfigDevFile overrides default behavior @@ -487,7 +487,7 @@ public static void Main() .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory().FullName; + string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks).FullName; using (var depsJsonFileStream = File.OpenRead(Path.Combine(outputFolder, $"{project.Name}.deps.json"))) { @@ -526,7 +526,7 @@ public void It_generates_rid_fallback_graph(bool isSelfContained) .Should() .Pass(); - string outputFolder = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier).FullName; + string outputFolder = buildCommand.GetOutputDirectory(project.TargetFrameworks, runtimeIdentifier: runtimeIdentifier).FullName; using var depsJsonFileStream = File.OpenRead(Path.Combine(outputFolder, $"{project.Name}.deps.json")); var dependencyContext = new DependencyContextJsonReader().Read(depsJsonFileStream); @@ -852,7 +852,7 @@ public void It_regenerates_files_if_self_contained_changes() .Should() .Pass(); - var outputPath = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier).FullName; + var outputPath = buildCommand.GetOutputDirectory(targetFramework: TFM, runtimeIdentifier: runtimeIdentifier).FullName; var depsFilePath = Path.Combine(outputPath, $"{testProject.Name}.deps.json"); var runtimeConfigPath = Path.Combine(outputPath, $"{testProject.Name}.runtimeconfig.json"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs index f0eb1d820f46..003f42cf3ea8 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs @@ -144,7 +144,7 @@ public void It_succeeds_when_RuntimeIdentifier_and_PlatformTarget_mismatch_but_P .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework, runtimeIdentifier: runtimeIdentifier); var selfContainedExecutable = $"HelloWorld{Constants.ExeSuffix}"; string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable); @@ -406,7 +406,7 @@ public void It_does_not_build_SelfContained_due_to_PublishSelfContained_being_tr .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); outputDirectory.Should().NotHaveFile("hostfxr.dll"); // This file will only appear if SelfContained. } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs index 80caa5a3e5f8..b7875c6e1401 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs @@ -29,7 +29,7 @@ public void It_generates_runtime_config() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputDirectory.Should().HaveFile(@"XUnitTestProject.runtimeconfig.json"); } @@ -54,4 +54,4 @@ public void It_builds_when_has_runtime_output_is_true() .Pass(); } } -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs index 1dcd8858786d..9253f0deaed1 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs @@ -195,7 +195,7 @@ static void Main(string[] args) .Pass(); // Make sure the app can run successfully - var exePath = Path.Combine(buildCommand.GetOutputDirectory().FullName, consoleApp.Name + ".exe"); + var exePath = Path.Combine(buildCommand.GetOutputDirectory(consoleApp.TargetFrameworks).FullName, consoleApp.Name + ".exe"); new RunExeCommand(Log, exePath) .Execute() .Should() diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs index 514f3f187f36..b3dc06bf3658 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs @@ -49,7 +49,7 @@ public void It_builds_a_RID_specific_runnable_output() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: runtimeIdentifier); var selfContainedExecutable = $"App{Constants.ExeSuffix}"; string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable); @@ -95,7 +95,7 @@ public void It_builds_a_framework_dependent_RID_specific_runnable_output() .Execute($"/p:RuntimeIdentifier={runtimeIdentifier}", $"/p:TestRuntimeIdentifier={runtimeIdentifier}", "/p:SelfContained=false") .Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, runtimeIdentifier: runtimeIdentifier); outputDirectory.Should().NotHaveSubDirectories(); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs index d87c3f6d9ccc..e02014359935 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs @@ -50,7 +50,7 @@ public void It_builds_the_project_successfully_twice() void VerifyAppBuilds(TestAsset testAsset) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); buildCommand .Execute() @@ -104,7 +104,7 @@ public void It_generates_satellite_assemblies() .Should() .Pass(); - var outputDir = buildCommand.GetOutputDirectory(); + var outputDir = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); var commandResult = new DotnetCommand(Log, Path.Combine(outputDir.FullName, "TestApp.dll")) .Execute(); @@ -150,7 +150,7 @@ public void The_clean_target_removes_all_files_from_the_output_folder() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputDirectory.Should().OnlyHaveFiles(new[] { "TestApp.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs index 01b7d0eec203..fc2bf1b15f08 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs @@ -69,7 +69,7 @@ public void It_copies_items_from_shared_project_to_correct_output_folder() .Should() .Pass(); - var outputPath = buildCommand.GetOutputDirectory(); + var outputPath = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputPath.Should().NotHaveFile("TextFile1.txt"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs index 93f851eac640..adfa29abe511 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs @@ -168,7 +168,7 @@ public static void Main(string[] args) private string VerifyAppBuilds(TestAsset testAsset, string prefix) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); buildCommand .Execute() diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs index 1b9d4749394b..479a30b06e9c 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs @@ -41,7 +41,7 @@ public void It_builds_the_project_successfully() void VerifyAppBuilds(TestAsset testAsset) { var buildCommand = new BuildCommand(testAsset, "TestApp"); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); buildCommand .Execute() @@ -84,7 +84,7 @@ public void The_clean_target_removes_all_files_from_the_output_folder() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); outputDirectory.Should().OnlyHaveFiles(new[] { "TestApp.dll", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs index fbe7902688ed..1754d1f528b8 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs @@ -83,7 +83,7 @@ public void It_respects_opt_outs(string attributeToOptOut) expectedInfo.Add("TargetFrameworkAttribute", $".NETCoreApp,Version=v{ToolsetInfo.CurrentTargetFrameworkVersion}"); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework, "Release").FullName, "HelloWorld.dll"); var actualInfo = AssemblyInfo.Get(assemblyPath); actualInfo.Should().Equal(expectedInfo); @@ -398,7 +398,7 @@ public void TestPreviewFeatures(bool enablePreviewFeatures, bool generateRequire var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(targetFramework).FullName, "HelloWorld.dll"); var parameterlessAttributes = AssemblyInfo.GetParameterlessAttributes(assemblyPath); bool contains = false; @@ -457,7 +457,7 @@ public void It_doesnt_includes_requires_preview_features() var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, "HelloWorld.dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework).FullName, "HelloWorld.dll"); var parameterlessAttributes = AssemblyInfo.GetParameterlessAttributes(assemblyPath); bool contains = false; @@ -686,7 +686,7 @@ public void GenerateUserSecretsForTestProject() .Should() .Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testTestProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(testTestProject.TargetFrameworks).FullName, testTestProject.Name + ".dll"); AssemblyInfo.Get(assemblyPath)["UserSecretsIdAttribute"].Should().Be("SecretsIdValue"); } @@ -718,7 +718,7 @@ public void It_includes_repository_url(bool privateRepo) var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(testProject.TargetFrameworks).FullName, testProject.Name + ".dll"); AssemblyInfo.Get(assemblyPath)["AssemblyMetadataAttribute"].Should().Be("RepositoryUrl:" + fakeUrl); } @@ -745,7 +745,7 @@ public void It_does_not_write_to_undefined_assembly_metadata_attribute(string ta .Should() .Pass(); - var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, testProject.Name + ".dll"); + var assemblyPath = Path.Combine(buildCommand.GetOutputDirectory(targetFramework).FullName, testProject.Name + ".dll"); if (containsAttribute) { diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs index a7e09f8a3a4f..28498a7cfaee 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs @@ -51,7 +51,7 @@ public void It_copies_local_package_dependencies_on_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); var expectedFiles = new [] { @@ -93,7 +93,7 @@ public void It_does_not_copy_local_package_dependencies_when_requested_not_to() buildCommand.Execute().Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", $"{ProjectName}.deps.json", @@ -131,7 +131,7 @@ public void It_copies_local_specific_runtime_package_dependencies_on_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: testProject.TargetFrameworks, runtimeIdentifier: rid); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", @@ -169,7 +169,7 @@ public void It_does_not_copy_local_package_dependencies_for_lib_projects() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}.deps.json", $"{ProjectName}.dll", @@ -202,7 +202,7 @@ public void It_copies_local_package_dependencies_for_lib_projects_when_requested .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().OnlyHaveFiles(new[] { $"{ProjectName}.deps.json", $"{ProjectName}.dll", @@ -342,7 +342,7 @@ public void It_copies_local_all_assets_on_self_contained_build() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: rid); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework: testProject.TargetFrameworks, runtimeIdentifier: rid); outputDirectory.Should().HaveFiles(new[] { $"{ProjectName}{Constants.ExeSuffix}", diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs index e6b0a5293de3..ca7d76c92f78 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs @@ -927,6 +927,7 @@ private string RestoreAndBuild(TestAsset testAsset, TestProject testProject) .Pass(); var outputDirectory = buildCommand.GetOutputDirectory( + testProject.TargetFrameworks, runtimeIdentifier: testProject.RuntimeIdentifier); return Path.Combine(outputDirectory.FullName, testProject.Name + ".dll"); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs index 34fb21dd3ab9..3d5ccb986cd7 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs @@ -222,7 +222,7 @@ public void FilesFromAspNetCoreSharedFrameworkAreNotIncluded() .Should() .Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().NotHaveFile("Microsoft.Extensions.DependencyInjection.Abstractions.dll"); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs b/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs index 6e84418d85d2..eadff3e804e3 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs @@ -54,7 +54,7 @@ public void NonCopyLocalProjectReferenceDoesNotGoToDeps() var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var outputDirectory = buildCommand.GetOutputDirectory(); + var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); using var stream = File.OpenRead(outputDirectory.File("MainProject.deps.json").FullName); using var reader = new DependencyContextJsonReader(); diff --git a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs index 50003cfa157d..79031d63a8f1 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs @@ -119,7 +119,7 @@ private void RunTest(string buildFailureCode = null, [CallerMemberName] string c { var publishCommand = new PublishCommand(testProjectInstance); - outputDirectory = publishCommand.GetOutputDirectory(runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; + outputDirectory = publishCommand.GetOutputDirectory(MainProject.TargetFrameworks, runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; buildOrPublishCommand = publishCommand; } @@ -127,7 +127,7 @@ private void RunTest(string buildFailureCode = null, [CallerMemberName] string c { var buildCommand = new BuildCommand(testProjectInstance); - outputDirectory = buildCommand.GetOutputDirectory(runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; + outputDirectory = buildCommand.GetOutputDirectory(MainProject.TargetFrameworks, runtimeIdentifier: MainProject.RuntimeIdentifier).FullName; buildOrPublishCommand = buildCommand; } From dc4f379451e60932b7bb34af5e77cb8d69e41e8c Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 10 Jan 2023 13:14:14 -0500 Subject: [PATCH 05/27] Fix package output path, don't check if TargetFramework is a global property, and reenable pack tests --- .../Microsoft.NET.DefaultOutputPaths.targets | 16 +++++-------- .../GivenFrameworkReferences.cs | 6 ++--- ...nThatWeHaveAPackageReferenceWithAliases.cs | 8 +++---- .../GivenThatWeWantToCopyPPFileToOutput.cs | 6 ++--- .../GivenThatWeWantToPackASimpleLibrary.cs | 23 +++++++++++-------- ...WithGeneratePackageOnBuildAndPackAsTool.cs | 8 +++---- .../Commands/MSBuildCommand.cs | 11 +++++++++ .../Commands/PackCommand.cs | 9 +++++++- .../OutputPathCalculator.cs | 12 ++++++++++ 9 files changed, 65 insertions(+), 34 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index 36d07d99ca82..153cc78094d2 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -62,7 +62,7 @@ Copyright (c) .NET Foundation. All rights reserved. $(OutputPath) - $(BaseArtifactsPath)\package\ + $(BaseArtifactsPath)\package\$(Configuration.ToLowerInvariant())\ - <_TargetFrameworkBackup>$(TargetFramework) - - false - true - $(_TargetFrameworkBackup) - - <_ArtifactPivots Condition="'$(TargetFrameworks)' != '' Or - '$(TargetFrameworkIsGlobal)' == 'true'" + + <_ArtifactPivots Condition="'$(TargetFrameworks)' != ''" >$(_ArtifactPivots)_$(TargetFramework.ToLowerInvariant()) - <_ArtifactPivots Condition="'$(RuntimeIdentifier)' != ''" + behavior we want. + + The BlazorWebAssembly .props file sets the RuntimeIdentifier to blazor-wasm, so treat that as a special case. + --> + + <_ArtifactPivots Condition="'$(RuntimeIdentifier)' != '' And !('$(RuntimeIdentifier)' == 'browser-wasm' And '$(AppendRuntimeIdentifierToOutputPath)' == 'false')" >$(_ArtifactPivots)_$(RuntimeIdentifier.ToLowerInvariant()) $(BaseOutputPath)$(_ArtifactPivots)\ From 0d3fe14e257811e92e85d3546ff4d9925e83e664 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 10 Jan 2023 22:28:18 -0500 Subject: [PATCH 07/27] Fix tests --- .../ShellShimRepositoryTests.cs | 4 +- .../GivenThatWeWantToRunILLink.cs | 2 +- .../WasmPublishIntegrationTest.cs | 4 +- .../PublishIntegrationTest.cs | 2 +- .../Commands/GetValuesCommand.cs | 2 - .../OutputPathCalculator.cs | 44 +++++++++++++++++-- ...eWantToPackAToolProjectWithPackagedShim.cs | 8 ++-- ...dResultNugetPackageNuGetPackagexFixture.cs | 2 +- .../GivenDotnetPackageAdd.cs | 2 +- .../GivenDotnetCleanCleansBuildArtifacts.cs | 2 +- .../GivenDotnetPublishPublishesProjects.cs | 2 +- .../dotnet-sln.Tests/GivenDotnetSlnAdd.cs | 24 ++++------ 12 files changed, 62 insertions(+), 36 deletions(-) diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs b/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs index f208da9d8105..db27ca26aa39 100644 --- a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs +++ b/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs @@ -495,9 +495,7 @@ private FilePath MakeHelloWorldExecutableDll([CallerMemberName] string callingMe var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputDirectory = new DirectoryInfo(Path.Combine(testInstance.Path, "bin", configuration)) - .EnumerateDirectories() - .Single(); + var outputDirectory = new DirectoryInfo(OutputPathCalculator.FromTestAsset(testInstance.Path, testInstance).GetOutputDirectory(configuration: configuration)); return new FilePath(Path.Combine(outputDirectory.FullName, $"{testAppName}.dll")); } diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs index 395c522f98b9..49d064327996 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs @@ -843,7 +843,7 @@ public void TrimmingOptions_are_defaulted_correctly_on_trimmed_apps(string targe var testProject = CreateTestProjectForILLinkTesting(targetFramework, projectName); var testAsset = _testAssetsManager.CreateTestProject(testProject, identifier: projectName + targetFramework); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var publishCommand = new PublishCommand(testAsset); publishCommand.Execute($"/p:RuntimeIdentifier={rid}", "/p:PublishTrimmed=true") .Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index a0aed309781a..22ea7480826d 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -310,7 +310,7 @@ public void Publish_WithStaticWebBasePathWorks(string basePath) }); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -371,7 +371,7 @@ public void Publish_Hosted_WithStaticWebBasePathWorks(string basePath) }); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs index c445697754a5..841b7ee0e20a 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs @@ -81,7 +81,7 @@ public void Publish_NoopsWith_RazorCompileOnPublishFalse() Directory.Delete(Path.Combine(projectDirectory.Path, "Views"), recursive: true); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute("/p:RazorCompileOnPublish=false").Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs index 2a7dfc3f9626..3af6e50de33d 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs @@ -53,9 +53,7 @@ public GetValuesCommand(TestAsset testAsset, string targetFramework = null) : base(testAsset, "WriteValuesToFile", relativePathToProject: null) { - _targetFramework = targetFramework ?? OutputPathCalculator.FromTestAsset(ProjectFile, testAsset).TryGetTargetFramework(); - _targetFramework = _targetFramework.Contains(";") ? "" : _targetFramework; _valueName = valueName; _valueType = valueType; diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 6addb48b33b4..2ff862a9b508 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -33,6 +33,11 @@ public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset t return FromTestProject(projectPath, testAsset.TestProject); } + if (!File.Exists(projectPath) && Directory.Exists(projectPath)) + { + projectPath = Directory.GetFiles(projectPath, "*.*proj").FirstOrDefault(); + } + var calculator = new OutputPathCalculator() { ProjectPath = projectPath, @@ -69,7 +74,11 @@ public string TryGetTargetFramework() var targetFrameworksElement = propertyGroup.Element(ns + "TargetFrameworks"); if (targetFrameworksElement != null) { - targetFramework = targetFrameworksElement.Value; + string targetFrameworks = targetFrameworksElement.Value; + if (!targetFrameworks.Contains(';')) + { + targetFramework = targetFrameworks; + } } else { @@ -80,6 +89,28 @@ public string TryGetTargetFramework() return targetFramework ?? ""; } + public bool IsMultiTargeted() + { + if (!string.IsNullOrEmpty(TargetFramework) && TargetFramework.Contains(';')) + { + return true; + } + var project = XDocument.Load(ProjectPath); + + var ns = project.Root.Name.Namespace; + + var propertyGroup = project.Root.Elements(ns + "PropertyGroup").First(); + var targetFrameworksElement = propertyGroup.Element(ns + "TargetFrameworks"); + if (targetFrameworksElement != null) + { + string targetFrameworks = targetFrameworksElement.Value; + return !string.IsNullOrEmpty(targetFrameworks); + } + + return false; + + } + private bool UsesArtifactsFolder() { if (UseArtifactsOutput.HasValue) @@ -94,7 +125,12 @@ private bool UsesArtifactsFolder() string targetFramework = TryGetTargetFramework(); - if (targetFramework == null || targetFramework.Contains(';')) + if (targetFramework == null) + { + return false; + } + + if (IsMultiTargeted()) { return false; } @@ -119,7 +155,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura if (UsesArtifactsFolder()) { string pivot = configuration.ToLowerInvariant(); - if (TryGetTargetFramework().Contains(';') && !string.IsNullOrEmpty(targetFramework)) + if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) { pivot += "_" + targetFramework; } @@ -153,7 +189,7 @@ public string GetPublishDirectory(string targetFramework = null, string configur if (UsesArtifactsFolder()) { string pivot = configuration.ToLowerInvariant(); - if (TryGetTargetFramework().Contains(';') && !string.IsNullOrEmpty(targetFramework)) + if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) { pivot += "_" + targetFramework; } diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs index 4403b0ddfa38..23dbb036fa09 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs @@ -47,7 +47,7 @@ private string SetupNuGetPackage( _testRoot = helloWorldAsset.TestRoot; - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); packCommand.Execute().Should().Pass(); _packageId = Path.GetFileNameWithoutExtension(packCommand.ProjectFile); @@ -191,7 +191,7 @@ public void It_uses_outputs_to_bin_by_default(bool multiTarget, string targetFra _testRoot = helloWorldAsset.TestRoot; - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); var outputDirectory = packCommand.GetOutputDirectory(targetFramework); packCommand.Execute().Should().Pass(); @@ -273,7 +273,7 @@ public void It_contains_shim_with_no_build(bool multiTarget, string targetFramew var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); - var packCommand = new PackCommand(Log, testAsset.TestRoot); + var packCommand = new PackCommand(testAsset); packCommand.Execute("/p:NoBuild=true").Should().Pass(); var nugetPackage = packCommand.GetNuGetPackage(); @@ -336,7 +336,7 @@ public void It_produces_valid_shims_when_the_first_build_is_wrong(bool multiTarg var buildCommand = new BuildCommand(helloWorldAsset); buildCommand.Execute("/p:PackageId=wrongpackagefirstbuild"); - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); packCommand.Execute().Should().Pass(); var nugetPackage = packCommand.GetNuGetPackage(); diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs index 6e796f10a9ba..c77be288716a 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs @@ -60,7 +60,7 @@ private string SetupNuGetPackage( nameof(NupkgOfPackWithShimsFixture) + multiTarget + targetFramework, targetFramework); - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); packCommand.Execute().Should().Pass(); return packCommand.GetNuGetPackage(packageVersion: _packageVersion); diff --git a/src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs b/src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs index 6cda61560c12..cf22c330c4e3 100644 --- a/src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs +++ b/src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs @@ -253,7 +253,7 @@ private static TestProject GetProject(string targetFramework, string referencePr private string GetPackagePath(string targetFramework, string packageName, string version, [CallerMemberName] string callingMethod = "", string identifier = null) { var project = GetProject(targetFramework, packageName, version); - var packCommand = new PackCommand(Log, _testAssetsManager.CreateTestProject(project, callingMethod: callingMethod, identifier: identifier).TestRoot, packageName); + var packCommand = new PackCommand(_testAssetsManager.CreateTestProject(project, callingMethod: callingMethod, identifier: identifier)); packCommand .Execute() diff --git a/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs b/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs index b28789b8ca89..2ecf090a7ccf 100644 --- a/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs +++ b/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs @@ -33,7 +33,7 @@ public void ItCleansAProjectBuiltWithRuntimeIdentifier() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputFolder = new DirectoryInfo(Path.Combine(testInstance.Path, "bin", configuration, ToolsetInfo.CurrentTargetFramework, $"{ToolsetInfo.LatestWinRuntimeIdentifier}-x64")); + var outputFolder = new DirectoryInfo(OutputPathCalculator.FromTestAsset(testInstance.Path).GetOutputDirectory(configuration: configuration, runtimeIdentifier: $"{ToolsetInfo.LatestWinRuntimeIdentifier}-x64")); outputFolder.Should().NotBeEmpty(); diff --git a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs index 1777a1d3acf2..5f3dccb82dd4 100644 --- a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs +++ b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs @@ -309,7 +309,7 @@ private DirectoryInfo PublishApp(string testAppName, string rid, string args = n .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - return new DirectoryInfo(Path.Combine(testProjectDirectory, "bin", configuration, ToolsetInfo.CurrentTargetFramework, rid ?? "", "publish")); + return new DirectoryInfo(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid)); } [Fact] diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs index c6818801dd6b..da05f098cebb 100644 --- a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs +++ b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs @@ -832,21 +832,15 @@ public void WhenValidProjectIsPassedTheSlnBuilds(string testAsset) var reasonString = "should be built in release mode, otherwise it means build configurations are missing from the sln file"; - var appReleaseDirectory = Directory.EnumerateDirectories( - Path.Combine(projectDirectory, "App", "bin"), - "Release", - SearchOption.AllDirectories); - appReleaseDirectory.Count().Should().Be(1, $"App {reasonString}"); - Directory.EnumerateFiles(appReleaseDirectory.Single(), "App.dll", SearchOption.AllDirectories) - .Count().Should().Be(1, $"App {reasonString}"); - - var libReleaseDirectory = Directory.EnumerateDirectories( - Path.Combine(projectDirectory, "Lib", "bin"), - "Release", - SearchOption.AllDirectories); - libReleaseDirectory.Count().Should().Be(1, $"Lib {reasonString}"); - Directory.EnumerateFiles(libReleaseDirectory.Single(), "Lib.dll", SearchOption.AllDirectories) - .Count().Should().Be(1, $"Lib {reasonString}"); + var appPathCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "App", "App.csproj")); + new DirectoryInfo(appPathCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); + new DirectoryInfo(appPathCalculator.GetOutputDirectory(configuration: "Release")).Should().Exist() + .And.HaveFile("App.dll"); + + var libPathCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "Lib", "Lib.csproj")); + new DirectoryInfo(libPathCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); + new DirectoryInfo(libPathCalculator.GetOutputDirectory(configuration: "Release")).Should().Exist() + .And.HaveFile("Lib.dll"); } [Theory] From 09a25419da6f73dbbc67e69e3a022f14b172415f Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 10 Jan 2023 22:45:48 -0500 Subject: [PATCH 08/27] Update blazor wasm baselines --- ...ootJsonManifest.Build.staticwebassets.json | 2014 +++++++------- ...iesAreCopiedToBuildOutput.Build.files.json | 472 ++-- ...edToBuildOutput.Build.staticwebassets.json | 2424 ++++++++--------- ...duleTargetPaths.Build.staticwebassets.json | 2040 +++++++------- ...izeBlazorInitialization.Publish.files.json | 16 +- ...nitialization.Publish.staticwebassets.json | 538 ++-- ...tBuildAndPublishModules.Publish.files.json | 16 +- ...ublishModules.Publish.staticwebassets.json | 532 ++-- ...nitialization.Publish.staticwebassets.json | 550 ++-- ...nBlazorBootJsonManifest.Publish.files.json | 16 +- ...tJsonManifest.Publish.staticwebassets.json | 532 ++-- ...Assets_BuildMinimal_Works.Build.files.json | 404 +-- ...ldMinimal_Works.Build.staticwebassets.json | 2014 +++++++------- ...ld_Hosted_Works.Build.staticwebassets.json | 2040 +++++++------- ...ts_PublishMinimal_Works.Publish.files.json | 16 +- ...Minimal_Works.Publish.staticwebassets.json | 532 ++-- ...iles_AsAssets.Publish.staticwebassets.json | 544 ++-- ..._Hosted_Works.Publish.staticwebassets.json | 544 ++-- 18 files changed, 7622 insertions(+), 7622 deletions(-) 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 b2abfd2c5de9..5b2fcf2f94c3 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -51,10 +51,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -68,10 +68,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -85,10 +85,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -102,10 +102,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -119,10 +119,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -136,10 +136,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -153,10 +153,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -170,10 +170,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -187,10 +187,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -204,10 +204,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -221,10 +221,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -238,10 +238,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -255,10 +255,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -272,10 +272,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -289,10 +289,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -306,10 +306,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -323,10 +323,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -340,10 +340,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -357,10 +357,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -374,10 +374,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -391,10 +391,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -408,10 +408,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -425,10 +425,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -442,10 +442,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -459,10 +459,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -476,10 +476,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -493,10 +493,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -510,10 +510,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -527,10 +527,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -544,10 +544,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -561,10 +561,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -578,10 +578,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -595,10 +595,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -612,10 +612,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -629,10 +629,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -646,10 +646,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -663,10 +663,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -680,10 +680,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -697,10 +697,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -714,10 +714,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -731,10 +731,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -748,10 +748,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -765,10 +765,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -782,10 +782,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -799,10 +799,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -816,10 +816,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -833,10 +833,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -850,10 +850,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -867,10 +867,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -884,10 +884,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -901,10 +901,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -918,10 +918,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -935,10 +935,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -952,10 +952,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -969,10 +969,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -986,10 +986,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1003,10 +1003,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1020,10 +1020,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1037,10 +1037,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1054,10 +1054,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1071,10 +1071,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1088,10 +1088,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1105,10 +1105,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1122,10 +1122,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1139,10 +1139,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1156,10 +1156,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1173,10 +1173,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1190,10 +1190,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1207,10 +1207,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1224,10 +1224,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1241,10 +1241,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1258,10 +1258,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1275,10 +1275,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1292,10 +1292,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1309,10 +1309,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1326,10 +1326,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1343,10 +1343,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1360,10 +1360,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1377,10 +1377,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1394,10 +1394,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1411,10 +1411,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1428,10 +1428,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1445,10 +1445,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1462,10 +1462,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1479,10 +1479,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1496,10 +1496,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1513,10 +1513,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1530,10 +1530,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1547,10 +1547,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1564,10 +1564,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1581,10 +1581,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1598,10 +1598,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1615,10 +1615,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1632,10 +1632,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1649,10 +1649,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1666,10 +1666,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1683,10 +1683,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1700,10 +1700,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1717,10 +1717,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1734,10 +1734,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1751,10 +1751,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1768,10 +1768,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1785,10 +1785,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1802,10 +1802,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1819,10 +1819,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1836,10 +1836,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1870,10 +1870,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1887,10 +1887,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1904,10 +1904,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1921,10 +1921,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1938,10 +1938,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1955,10 +1955,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1972,10 +1972,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1989,10 +1989,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2006,10 +2006,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2023,10 +2023,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2040,10 +2040,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2057,10 +2057,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2074,10 +2074,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2091,10 +2091,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2108,10 +2108,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2125,10 +2125,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2142,10 +2142,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2159,10 +2159,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2176,10 +2176,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2193,10 +2193,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2210,10 +2210,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2227,10 +2227,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2244,10 +2244,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2261,10 +2261,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2278,10 +2278,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2295,10 +2295,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2312,10 +2312,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2329,10 +2329,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2346,10 +2346,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2363,10 +2363,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2380,10 +2380,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2397,10 +2397,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2414,10 +2414,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2431,10 +2431,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2448,10 +2448,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2465,10 +2465,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2482,10 +2482,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2499,10 +2499,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2516,10 +2516,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2533,10 +2533,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2550,10 +2550,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2567,10 +2567,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2584,10 +2584,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2601,10 +2601,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2618,10 +2618,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2635,10 +2635,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2652,10 +2652,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2669,10 +2669,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Build", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3454,3418 +3454,3418 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", 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 798daf4ebe55..31afa71fdc68 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,240 +1,240 @@ [ - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", - "${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\\blazorwasm.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", - "${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.wasm", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", - "${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.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", - "${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.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", 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 14b1d5d7ed74..3822f1a57362 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 @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -523,10 +523,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -540,10 +540,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -557,10 +557,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -588,13 +588,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -605,13 +605,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1917,10 +1917,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1934,10 +1934,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll", "AssetKind": "Build", @@ -3444,13 +3444,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\classlibrarywithsatelliteassemblies.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb", "AssetKind": "Build", @@ -3461,19 +3461,19 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\classlibrarywithsatelliteassemblies.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", @@ -3481,16 +3481,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", @@ -3498,16 +3498,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", @@ -3515,16 +3515,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", @@ -3532,10 +3532,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3583,33 +3583,33 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es-ES", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", @@ -3617,16 +3617,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", @@ -3634,16 +3634,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", @@ -3651,16 +3651,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", @@ -3668,10 +3668,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3736,16 +3736,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", @@ -3753,16 +3753,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", @@ -3770,16 +3770,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3787,16 +3787,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3804,16 +3804,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3821,16 +3821,16 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", @@ -3838,16 +3838,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", @@ -3855,10 +3855,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3872,10 +3872,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3889,16 +3889,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", @@ -3906,16 +3906,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", @@ -3923,16 +3923,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pt-BR", "CopyToOutputDirectory": "PreserveNewest", @@ -3940,16 +3940,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pt-BR", "CopyToOutputDirectory": "PreserveNewest", @@ -3957,16 +3957,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", @@ -3974,16 +3974,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", @@ -3991,16 +3991,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", @@ -4008,16 +4008,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", @@ -4025,16 +4025,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hans", "CopyToOutputDirectory": "PreserveNewest", @@ -4042,16 +4042,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hans", "CopyToOutputDirectory": "PreserveNewest", @@ -4059,16 +4059,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hant", "CopyToOutputDirectory": "PreserveNewest", @@ -4076,16 +4076,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hant", "CopyToOutputDirectory": "PreserveNewest", @@ -4096,4002 +4096,4002 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -8108,7 +8108,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 01cbf2224a1f..3e873f9d0257 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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -523,10 +523,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -554,13 +554,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -591,10 +591,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -608,10 +608,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1917,10 +1917,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1985,10 +1985,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3515,10 +3515,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3535,3458 +3535,3458 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 2d084bb0d6cb..a73b8f732cd8 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 @@ -225,14 +225,14 @@ "${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.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", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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", 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 7212e09243ed..45cdedbe68bc 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2383,7 +2383,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2400,7 +2400,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2417,24 +2417,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2451,7 +2451,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2468,211 +2468,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3760,7 +3760,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3777,7 +3777,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3794,7 +3794,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", 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 eacef659aec6..7c0498d61394 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 @@ -222,14 +222,14 @@ "${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.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", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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", 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 ed78c31b7361..a70c00a73292 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2672,7 +2672,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 3bdd8d4823a6..f19f1e85c998 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 @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -214,13 +214,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -237,13 +237,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -254,30 +254,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,13 +305,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2481,7 +2481,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2498,7 +2498,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2532,24 +2532,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2566,7 +2566,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2583,211 +2583,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3892,7 +3892,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3909,7 +3909,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3926,7 +3926,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3943,7 +3943,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", 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 eacef659aec6..7c0498d61394 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 @@ -222,14 +222,14 @@ "${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.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", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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", 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 09d54d0eb618..c97cb503a642 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2672,7 +2672,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 ed04725a8861..ef7b7ef905ed 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,206 +1,206 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "${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", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", 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 5cc6c5efea22..86c1da5b5d59 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -51,10 +51,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -68,10 +68,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -85,10 +85,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -102,10 +102,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -119,10 +119,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -136,10 +136,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -153,10 +153,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -170,10 +170,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -187,10 +187,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -204,10 +204,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -221,10 +221,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -238,10 +238,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -255,10 +255,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -272,10 +272,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -289,10 +289,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -306,10 +306,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -323,10 +323,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -340,10 +340,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -357,10 +357,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -374,10 +374,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -391,10 +391,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -408,10 +408,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -425,10 +425,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -442,10 +442,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -459,10 +459,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -476,10 +476,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -493,10 +493,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -510,10 +510,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -527,10 +527,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -544,10 +544,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -561,10 +561,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -578,10 +578,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -595,10 +595,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -612,10 +612,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -629,10 +629,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -646,10 +646,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -663,10 +663,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -680,10 +680,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -697,10 +697,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -714,10 +714,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -731,10 +731,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -748,10 +748,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -765,10 +765,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -782,10 +782,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -799,10 +799,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -816,10 +816,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -833,10 +833,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -850,10 +850,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -867,10 +867,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -884,10 +884,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -901,10 +901,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -918,10 +918,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -935,10 +935,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -952,10 +952,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -969,10 +969,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -986,10 +986,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1003,10 +1003,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1020,10 +1020,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1037,10 +1037,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1054,10 +1054,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1071,10 +1071,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1088,10 +1088,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1105,10 +1105,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1122,10 +1122,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1139,10 +1139,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1156,10 +1156,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1173,10 +1173,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1190,10 +1190,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1207,10 +1207,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1224,10 +1224,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1241,10 +1241,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1258,10 +1258,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1275,10 +1275,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1292,10 +1292,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1309,10 +1309,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1326,10 +1326,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1343,10 +1343,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1360,10 +1360,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1377,10 +1377,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1394,10 +1394,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1411,10 +1411,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1428,10 +1428,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1445,10 +1445,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1462,10 +1462,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1479,10 +1479,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1496,10 +1496,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1513,10 +1513,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1530,10 +1530,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1547,10 +1547,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1564,10 +1564,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1581,10 +1581,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1598,10 +1598,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1615,10 +1615,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1632,10 +1632,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1649,10 +1649,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1666,10 +1666,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1683,10 +1683,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1700,10 +1700,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1717,10 +1717,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1734,10 +1734,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1751,10 +1751,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1768,10 +1768,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1785,10 +1785,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1802,10 +1802,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1819,10 +1819,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1836,10 +1836,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1870,10 +1870,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1887,10 +1887,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1904,10 +1904,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1921,10 +1921,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1938,10 +1938,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1955,10 +1955,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1972,10 +1972,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1989,10 +1989,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2006,10 +2006,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2023,10 +2023,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2040,10 +2040,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2057,10 +2057,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2074,10 +2074,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2091,10 +2091,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2108,10 +2108,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2125,10 +2125,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2142,10 +2142,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2159,10 +2159,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2176,10 +2176,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2193,10 +2193,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2210,10 +2210,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2227,10 +2227,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2244,10 +2244,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2261,10 +2261,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2278,10 +2278,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2295,10 +2295,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2312,10 +2312,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2329,10 +2329,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2346,10 +2346,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2363,10 +2363,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2380,10 +2380,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2397,10 +2397,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2414,10 +2414,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2431,10 +2431,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2448,10 +2448,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2465,10 +2465,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2482,10 +2482,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2499,10 +2499,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2516,10 +2516,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2533,10 +2533,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2550,10 +2550,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2567,10 +2567,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2584,10 +2584,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2601,10 +2601,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2618,10 +2618,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2635,10 +2635,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2652,10 +2652,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2669,10 +2669,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Build", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "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": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3454,3418 +3454,3418 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", 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 1cfb920ae1ab..f4105ac2d968 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 @@ -47,10 +47,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -64,10 +64,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -520,13 +520,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -557,10 +557,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -591,10 +591,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -608,10 +608,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1934,10 +1934,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1985,10 +1985,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3518,3458 +3518,3458 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 3e5bb199f5c0..fddf7367fde0 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 @@ -225,14 +225,14 @@ "${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.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", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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", 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 901bbe953163..3fe099d580fe 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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3760,7 +3760,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3777,7 +3777,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 b8fac183f1df..365241932b6d 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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -220,13 +220,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -237,30 +237,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -271,13 +271,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,7 +305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2481,24 +2481,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2532,211 +2532,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2753,7 +2753,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2770,7 +2770,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2787,7 +2787,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 b8fac183f1df..365241932b6d 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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -220,13 +220,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -237,30 +237,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -271,13 +271,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,7 +305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2481,24 +2481,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2532,211 +2532,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2753,7 +2753,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2770,7 +2770,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2787,7 +2787,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", From 114516024af603c543cea365855aefee51337189 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Wed, 11 Jan 2023 16:28:32 -0500 Subject: [PATCH 09/27] Update tests --- .../PackageLibraryDirectDependency.csproj | 4 -- .../PackageLibraryTransitiveDependency.csproj | 3 - .../PackageLibraryNoStaticAssets.csproj | 3 - .../PackageLibraryTransitiveDependency.csproj | 3 - .../RazorClassLibrary/ClassLibrary.csproj | 3 - .../EndToEnd.Tests/GivenDotNetUsesMSBuild.cs | 2 +- .../GivenThatWeWantToBuildANetCoreApp.cs | 3 +- .../WasmBuildIntegrationTest.cs | 2 +- .../WasmBuildLazyLoadTest.cs | 4 +- .../WasmCompressionTests.cs | 19 ++++--- .../WasmPublishIntegrationTest.cs | 50 ++++++++--------- .../WasmPwaManifestTests.cs | 12 ++-- .../JsModulesIntegrationTest.cs | 4 +- .../PackIntegrationTest.cs | 10 ++-- .../PublishIntegrationTest.cs | 16 +++--- .../ScopedCssIntegrationTests.cs | 6 +- .../StaticWebAssetsIntegrationTest.cs | 55 ++++++++++--------- .../GivenThatWeWantToPackAToolProject.cs | 2 +- ...antToPackAToolProjectWithExplicitConfig.cs | 4 +- ...kAToolProjectWithGeneratePackageOnBuild.cs | 3 +- ...eWantToPackAToolProjectWithP2PReference.cs | 3 +- .../GivenDotnetBuildBuildsCsproj.cs | 6 +- src/Tests/dotnet-pack.Tests/PackTests.cs | 2 +- .../GivenDotnetPublishPublishesProjects.cs | 6 +- .../dotnet-sln.Tests/GivenDotnetSlnRemove.cs | 14 ++--- ...GivenDotnetTestBuildsAndRunsTestFromDll.cs | 6 +- ...tfromCsprojWithCorrectTestRunParameters.cs | 2 +- ...nDotnetTestContainsEnvironmentVariables.cs | 6 +- src/Tests/dotnet-vstest.Tests/VSTestTests.cs | 8 ++- .../dotnet.Tests/GivenThatICareAboutVBApps.cs | 10 ++-- 30 files changed, 131 insertions(+), 140 deletions(-) diff --git a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj index 231823edc8c7..c4ed8baeb193 100644 --- a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj @@ -1,10 +1,6 @@ - true - - - net8.0 © Microsoft Razor Test diff --git a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj index 1da2577afcc2..5da5c0d37f18 100644 --- a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj @@ -2,9 +2,6 @@ true - - - net8.0 © Microsoft Razor Test diff --git a/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj b/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj index c65be45a61e3..3d574e76ce85 100644 --- a/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj +++ b/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj @@ -2,9 +2,6 @@ true - - - net8.0 © Microsoft Razor Test diff --git a/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj b/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj index 1da2577afcc2..5da5c0d37f18 100644 --- a/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj @@ -2,9 +2,6 @@ true - - - net8.0 © Microsoft Razor Test diff --git a/src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj b/src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj index 80a63856ab17..34e81b98ce53 100644 --- a/src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj +++ b/src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj @@ -2,9 +2,6 @@ true - - - $(AspNetTestTfm) © Microsoft Razor Test diff --git a/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs b/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs index d4c71b1667de..21da62fa0f17 100644 --- a/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs +++ b/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs @@ -43,7 +43,7 @@ public void ItCanNewRestoreBuildRunCleanMSBuildProject() .Should().Pass() .And.HaveStdOutContaining("Hello, World!"); - var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin"); + var binDirectory = new DirectoryInfo(projectDirectory).Sub("artifacts").Sub("bin"); binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories); new CleanCommand(Log, projectDirectory) diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs index 513a5c727005..934bad82939f 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs @@ -626,7 +626,8 @@ public void It_uses_lowercase_form_of_the_target_framework_for_the_output_path(b var testProject = new TestProject() { Name = "OutputPathCasing", - TargetFrameworks = "ignored", + // Force the actual TargetFramework to be included in the artifact pivots + TargetFrameworks = "ignored;ignored2", IsExe = true }; diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs index 4c7895754c4f..5e198342bb6e 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs @@ -93,7 +93,7 @@ public void Build_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "Debug", DefaultTfm, "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "artifacts", "bin", "debug", "RazorClassLibrary.dll"))); } }); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs index 66ec3cf61726..e30f506c8a0d 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs @@ -135,7 +135,7 @@ public void Publish_LazyLoadExplicitAssembly_Debug_Works() }); // Act - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl") .Should().Pass(); @@ -184,7 +184,7 @@ public void Publish_LazyLoadExplicitAssembly_Release_Works() }); // Act - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:Configuration=Release") .Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs index 320f71157fa3..b7f5994072ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs @@ -23,13 +23,14 @@ public void Publish_UpdatesFilesWhenSourcesChange() var testAppName = "BlazorHosted"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute().Should().Pass(); // Act - var mainAppDll = Path.Combine(testInstance.TestRoot, "blazorhosted", "bin", "Debug", DefaultTfm, "publish", "wwwroot", "_framework", "blazorwasm.dll"); + var blazorHostedPublishDirectory = publishCommand.GetOutputDirectory().FullName; + var mainAppDll = Path.Combine(blazorHostedPublishDirectory, "wwwroot", "_framework", "blazorwasm.dll"); var mainAppDllThumbPrint = FileThumbPrint.Create(mainAppDll); - var mainAppCompressedDll = Path.Combine(testInstance.TestRoot, "blazorhosted", "bin", "Debug", DefaultTfm, "publish", "wwwroot", "_framework", "blazorwasm.dll.br"); + var mainAppCompressedDll = Path.Combine(blazorHostedPublishDirectory, "wwwroot", "_framework", "blazorwasm.dll.br"); var mainAppCompressedDllThumbPrint = FileThumbPrint.Create(mainAppCompressedDll); var blazorBootJson = Path.Combine(testInstance.TestRoot, publishCommand.GetOutputDirectory(DefaultTfm).ToString(), "wwwroot", "_framework", "blazor.boot.json"); @@ -64,15 +65,15 @@ public void Publish_WithoutLinkerAndCompression_UpdatesFilesWhenSourcesChange() var testAppName = "BlazorHosted"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute("/p:BlazorWebAssemblyEnableLinking=false").Should().Pass(); // Act - var buildOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); - var mainAppDll = Path.Combine(testInstance.TestRoot, "blazorhosted", "bin", "Debug", DefaultTfm, "publish", "wwwroot", "_framework", "blazorwasm.dll"); + var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm).FullName; + var mainAppDll = Path.Combine(publishDirectory, "wwwroot", "_framework", "blazorwasm.dll"); var mainAppDllThumbPrint = FileThumbPrint.Create(mainAppDll); - var mainAppCompressedDll = Path.Combine(testInstance.TestRoot, "blazorhosted", "bin", "Debug", DefaultTfm, "publish", "wwwroot", "_framework", "blazorwasm.dll.br"); + var mainAppCompressedDll = Path.Combine(publishDirectory, "wwwroot", "_framework", "blazorwasm.dll.br"); var mainAppCompressedDllThumbPrint = FileThumbPrint.Create(mainAppCompressedDll); var programFile = Path.Combine(testInstance.TestRoot, "blazorwasm", "Program.cs"); @@ -161,7 +162,7 @@ public void Publish_CompressesAllFrameworkFiles() var testAppName = "BlazorWasmWithLibrary"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl").Should().Pass(); @@ -169,7 +170,7 @@ public void Publish_CompressesAllFrameworkFiles() // Act var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); - var frameworkFilesPath = Path.Combine(Path.Combine(testInstance.TestRoot, "blazorwasm"), publishOutputDirectory, "wwwroot", "_framework"); + var frameworkFilesPath = Path.Combine(publishOutputDirectory, "wwwroot", "_framework"); // Assert foreach (var file in Directory.EnumerateFiles(frameworkFilesPath, "*", new EnumerationOptions { RecurseSubdirectories = true, })) diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index 22ea7480826d..5cd3b42cc28e 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -29,7 +29,7 @@ public void Publish_MinimalApp_Works() var testAppName = "BlazorWasmMinimal"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, testInstance.TestRoot); + var publishCommand = new PublishCommand(testInstance); publishCommand.Execute().Should().Pass() .And.NotHaveStdOutContaining("warning IL"); @@ -61,7 +61,7 @@ public void Publish_WithDefaultSettings_Works() var testAppName = "BlazorWasmWithLibrary"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -119,7 +119,7 @@ public void Publish_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "Debug", DefaultTfm, "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "artifacts", "bin", "debug", "RazorClassLibrary.dll"))); } }); @@ -128,7 +128,7 @@ public void Publish_Works_WithLibraryUsingHintPath() buildLibraryCommand.Execute("/bl") .Should().Pass(); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl").Should().Pass(); @@ -155,7 +155,7 @@ public void Publish_WithScopedCss_Works() var testInstance = CreateAspNetSdkTestAsset(testAppName); File.WriteAllText(Path.Combine(testInstance.TestRoot, "blazorwasm", "App.razor.css"), "h1 { font-size: 16px; }"); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -197,7 +197,7 @@ public void Publish_InRelease_Works() var testInstance = CreateAspNetSdkTestAsset(testAppName); File.WriteAllText(Path.Combine(testInstance.TestRoot, "blazorwasm", "App.razor.css"), "h1 { font-size: 16px; }"); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:Configuration=Release").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm, "Release"); @@ -235,14 +235,14 @@ public void Publish_WithExistingWebConfig_Works() var webConfigContents = "test webconfig contents"; File.WriteAllText(Path.Combine(testInstance.TestRoot, "blazorwasm", "web.config"), webConfigContents); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:Configuration=Release").Should().Pass(); - var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm, "Release"); - // Verify web.config - new FileInfo(Path.Combine(publishDirectory.ToString(), "..", "web.config")).Should().Exist(); - new FileInfo(Path.Combine(publishDirectory.ToString(), "..", "web.config")).Should().Contain(webConfigContents); + var outputDirectory = new BuildCommand(testInstance, "blazorwasm").GetOutputDirectory(configuration: "Release"); + var webConfig = outputDirectory.File("web.config"); + webConfig.Should().Exist(); + webConfig.Should().Contain(webConfigContents); } [Fact] @@ -256,7 +256,7 @@ public void Publish_WithNoBuild_Works() buildCommand.Execute() .Should().Pass(); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/p:NoBuild=true", "/bl").Should().Pass(); @@ -437,7 +437,7 @@ public void Publish_WithTrimmingdDisabled_Works() }); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -510,7 +510,7 @@ public void Publish_SatelliteAssemblies_AreCopiedToBuildOutput() } }); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -536,7 +536,7 @@ public void Publish_HostedApp_DefaultSettings_Works() var testAppName = "BlazorHosted"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl").Should().Pass(); @@ -624,7 +624,7 @@ public void Publish_HostedApp_ProducesBootJsonDataWithExpectedContent() File.WriteAllText(Path.Combine(wwwroot, "appsettings.json"), "Default settings"); File.WriteAllText(Path.Combine(wwwroot, "appsettings.development.json"), "Development settings"); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute().Should().Pass(); var buildOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); @@ -674,7 +674,7 @@ public void Publish_HostedApp_WithSatelliteAssemblies() var resxfileInProject = Path.Combine(testInstance.TestRoot, "blazorwasm", "Resources.ja.resx.txt"); File.Move(resxfileInProject, Path.Combine(testInstance.TestRoot, "blazorwasm", "Resource.ja.resx")); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl").Should().Pass(); @@ -805,7 +805,7 @@ public void Publish_HostedApp_WithNoBuild_Works() var buildCommand = new BuildCommand(testInstance, "blazorhosted"); buildCommand.Execute().Should().Pass(); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/p:NoBuild=true", "/bl").Should().Pass(); @@ -861,7 +861,7 @@ public void Publish_HostedApp_VisualStudio() buildCommand.Execute("/p:BuildInsideVisualStudio=true").Should().Pass(); // Publish - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute("/p:BuildProjectReferences=false /p:BuildInsideVisualStudio=true").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -945,7 +945,7 @@ public void Publish_HostedAppWithScopedCss_VisualStudio() buildCommand.Execute("/p:BuildInsideVisualStudio=true /p:Configuration=Release").Should().Pass(); // Publish - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute("/p:BuildProjectReferences=false /p:BuildInsideVisualStudio=true").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); @@ -1051,7 +1051,7 @@ public void Publish_HostedApp_VisualStudio_WithSatelliteAssemblies() buildCommand.WithWorkingDirectory(testInstance.TestRoot); buildCommand.Execute("/bl:build-msbuild.binlog").Should().Pass(); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/p:BuildProjectReferences=false", "/bl:publish-msbuild.binlog").Should().Pass(); @@ -1080,7 +1080,7 @@ public void Publish_HostedApp_WithRidSpecifiedInCLI_Works() var testAppName = "BlazorHostedRID"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/p:RuntimeIdentifier=linux-x64", "/bl").Should().Pass(); @@ -1094,7 +1094,7 @@ public void Publish_HostedApp_WithRid_Works() var testAppName = "BlazorHostedRID"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.WithWorkingDirectory(testInstance.TestRoot); publishCommand.Execute("/bl").Should().Pass(); @@ -1196,7 +1196,7 @@ public void Publish_WithInvariantGlobalizationEnabled_DoesNotCopyGlobalizationDa project.Root.Add(itemGroup); }); - var publishCommand = new PublishCommand(Log, testInstance.TestRoot); + var publishCommand = new PublishCommand(testInstance); publishCommand.Execute().Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); @@ -1227,7 +1227,7 @@ public void Publish_HostingMultipleBlazorWebApps_Works() var testAppName = "BlazorMultiApp"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "BlazorMultipleApps.Server")); + var publishCommand = new PublishCommand(testInstance, "BlazorMultipleApps.Server"); publishCommand.Execute().Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs index 287707faac85..871ac7e22358 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs @@ -71,7 +71,7 @@ public void Build_HostedAppWithServiceWorker_Works() buildCommand.Execute() .Should().Pass(); - var buildOutputDirectory = Path.Combine(testInstance.TestRoot, "blazorwasm", "bin", "Debug", DefaultTfm); + var buildOutputDirectory = OutputPathCalculator.FromTestAsset(Path.Combine(testInstance.TestRoot, "blazorwasm")).GetOutputDirectory(); var serviceWorkerAssetsManifest = Path.Combine(buildOutputDirectory, "wwwroot", "custom-service-worker-assets.js"); // Trim prefix 'self.assetsManifest = ' and suffix ';' @@ -93,7 +93,7 @@ public void PublishWithPWA_ProducesAssets() var testAppName = "BlazorWasmWithLibrary"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute().Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); @@ -121,7 +121,7 @@ public void PublishHostedWithPWA_ProducesAssets() var testAppName = "BlazorHosted"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute().Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); @@ -148,7 +148,7 @@ public void Publish_UpdatesServiceWorkerVersionHash_WhenSourcesChange() var testAppName = "BlazorWasmWithLibrary"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:ServiceWorkerAssetsManifest=service-worker-assets.js").Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); @@ -167,7 +167,7 @@ public void Publish_UpdatesServiceWorkerVersionHash_WhenSourcesChange() File.WriteAllText(cssFile, ".updated { }"); // Assert - publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:ServiceWorkerAssetsManifest=service-worker-assets.js").Should().Pass(); var updatedVersion = File.ReadAllLines(serviceWorkerFile).Last(); @@ -188,7 +188,7 @@ public void Publish_DeterministicAcrossBuilds_WhenNoSourcesChange() var testAppName = "BlazorWasmWithLibrary"; var testInstance = CreateAspNetSdkTestAsset(testAppName); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:ServiceWorkerAssetsManifest=service-worker-assets.js").Should().Pass(); var publishOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm).ToString(); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs index d49be6793a58..3f9309a55d31 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs @@ -243,7 +243,7 @@ public void PublishProjectWithReferences_IncorporatesInitializersFromClassLibrar // Notice that it does not follow the pattern $(PackageId).lib.module.js CreateFile("console.log('Hello world ClassLibrary')", "ClassLibrary", "wwwroot", "AnotherClassLib.lib.module.js"); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/bl").Should().Pass(); @@ -295,7 +295,7 @@ public void PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitial new XAttribute("TargetPath", "wwwroot\\AnotherClassLib.lib.module.js")))); } }); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/bl").Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs index 9b5878c7cfbc..afd380706fce 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs @@ -33,7 +33,7 @@ public void Pack_NoBuild_Works_IncludesAssembly() var build = new BuildCommand(projectDirectory); build.Execute().Should().Pass(); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path); + var pack = new MSBuildCommand(projectDirectory, "Pack"); var result = pack.Execute("/p:NoBuild=true"); result.Should().Pass(); @@ -45,17 +45,17 @@ public void Pack_NoBuild_Works_IncludesAssembly() result.Should().NuSpecContain( Path.Combine(projectDirectory.Path, "obj", "Debug", "ClassLibrary.1.0.0.nuspec"), - $""); result.Should().NuSpecDoesNotContain( Path.Combine(projectDirectory.Path, "obj", "Debug", "ClassLibrary.1.0.0.nuspec"), - $""); result.Should().NuSpecDoesNotContain( Path.Combine(projectDirectory.Path, "obj", "Debug", "ClassLibrary.1.0.0.nuspec"), - $""); result.Should().NuSpecDoesNotContain( @@ -63,7 +63,7 @@ public void Pack_NoBuild_Works_IncludesAssembly() $@""); result.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "bin", "Debug", "ClassLibrary.1.0.0.nupkg"), + Path.Combine(build.GetPackageDirectory().FullName, "ClassLibrary.1.0.0.nupkg"), Path.Combine("lib", DefaultTfm, "ClassLibrary.dll")); } } diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs index 841b7ee0e20a..bc716be12871 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs @@ -26,11 +26,11 @@ public void Publish_RazorCompileOnPublish_IsDefault() var testAsset = "RazorSimpleMvc"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute().Should().Pass(); - var outputPath = Path.Combine(projectDirectory.Path, "bin", "Debug", DefaultTfm); - var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); + var outputPath = new BuildCommand(projectDirectory).GetOutputDirectory().FullName; + var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").FullName; new FileInfo(Path.Combine(publishOutputPath, "SimpleMvc.dll")).Should().Exist(); new FileInfo(Path.Combine(publishOutputPath, "SimpleMvc.pdb")).Should().Exist(); @@ -97,7 +97,7 @@ public void Publish_IncludeCshtmlAndRefAssemblies_CopiesFiles() var testAsset = "RazorSimpleMvc"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute("/p:CopyRazorGenerateFilesToPublishDirectory=true", "/p:CopyRefAssembliesToPublishDirectory=true").Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); @@ -125,7 +125,7 @@ public void Publish_WithPreserveCompilationReferencesSetInProjectFile_CopiesRefs }); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute().Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); @@ -143,7 +143,7 @@ public void Publish_WithP2P_AndRazorCompileOnBuild_CopiesRazorAssembly() var testAsset = "RazorAppWithP2PReference"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, Path.Combine(projectDirectory.TestRoot, "AppWithP2PReference")); + var publish = new PublishCommand(projectDirectory, "AppWithP2PReference"); publish.Execute().Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); @@ -190,7 +190,7 @@ public void Publish_WithP2P_WorksWhenBuildProjectReferencesIsDisabled() new FileInfo(Path.Combine(outputPath, "AnotherClassLib.dll")).Should().Exist(); // dotnet msbuild /t:Publish /p:BuildProjectReferences=false - var publish = new PublishCommand(Log, Path.Combine(projectDirectory.TestRoot, "AppWithP2PReference")); + var publish = new PublishCommand(projectDirectory, "AppWithP2PReference"); publish.Execute("/p:BuildProjectReferences=false", "/p:ErrorOnDuplicatePublishOutputFiles=false").Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); @@ -222,7 +222,7 @@ public void Publish_WithNoBuild_CopiesAlreadyCompiledViews() var assemblyVersion = AssemblyName.GetAssemblyName(assemblyPath).Version; // Publish should copy dlls from OutputPath - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute("/p:NoBuild=true").Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs index 232ea5137ca6..8109cde7bafd 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs @@ -249,7 +249,7 @@ public void Publish_PublishesBundleToTheRightLocation() var testAsset = "RazorComponentApp"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.WithWorkingDirectory(projectDirectory.TestRoot); publish.Execute("/bl").Should().Pass(); @@ -271,7 +271,7 @@ public void Publish_NoBuild_PublishesBundleToTheRightLocation() var buildResult = build.Execute("/bl"); buildResult.Should().Pass(); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.Execute("/p:NoBuild=true").Should().Pass(); var publishOutputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); @@ -304,7 +304,7 @@ public void Publish_Publishes_IndividualScopedCssFiles_WhenNoBundlingIsEnabled() var testAsset = "RazorComponentApp"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, projectDirectory.TestRoot); + var publish = new PublishCommand(projectDirectory); publish.WithWorkingDirectory(projectDirectory.TestRoot); publish.Execute("/p:DisableScopedCssBundling=true", "/bl").Should().Pass(); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs index 20c6a61b81e4..827f7b299821 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs @@ -283,7 +283,7 @@ public void PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibrarie var restore = new RestoreCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); restore.Execute().Should().Pass(); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/bl").Should().Pass(); @@ -616,7 +616,7 @@ public void PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPu var restore = new RestoreCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); restore.Execute().Should().Pass(); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/bl").Should().Pass(); @@ -654,7 +654,7 @@ public void PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonM var testAsset = "RazorAppWithPackageAndP2PReference"; ProjectDirectory = CreateAspNetSdkTestAsset(testAsset); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.Execute($"/p:PublishSingleFile=true /p:RuntimeIdentifier={RuntimeInformation.RuntimeIdentifier}").Should().Pass(); var intermediateOutputPath = publish.GetIntermediateDirectory(DefaultTfm, "Debug").ToString(); @@ -758,11 +758,12 @@ public void PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_ var restore = new RestoreCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); restore.Execute().Should().Pass(); - var publish = new PublishCommand(Log, Path.Combine(ProjectDirectory.TestRoot, "AppWithPackageAndP2PReference")); + var publish = new PublishCommand(ProjectDirectory, "AppWithPackageAndP2PReference"); publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/p:AppendTargetFrameworkToOutputPath=false", "/bl").Should().Pass(); - var intermediateOutputPath = publish.GetIntermediateDirectory("", "Debug").ToString(); + // Hard code intermediate output path here to account for AppendTargetFrameworkToOutputPath=false + var intermediateOutputPath = Path.Combine(ProjectDirectory.Path, "AppWithPackageAndP2PReference", "obj", "Debug"); var publishPath = publish.GetOutputDirectory("", "Debug").ToString(); // GenerateStaticWebAssetsManifest should generate the manifest file. @@ -910,7 +911,7 @@ public void Pack_IncludesStaticWebAssets() var testAsset = "PackageLibraryDirectDependency"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset, subdirectory: "TestPackages"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); @@ -921,7 +922,7 @@ public void Pack_IncludesStaticWebAssets() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets", "js", "pkg-direct-dep.js"), @@ -940,7 +941,7 @@ public void Pack_NoAssets_DoesNothing() var testAsset = "PackageLibraryNoStaticAssets"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset, subdirectory: "TestPackages"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path); + var pack = new MSBuildCommand(projectDirectory, "Pack"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); @@ -951,7 +952,7 @@ public void Pack_NoAssets_DoesNothing() new FileInfo(Path.Combine(outputPath, "PackageLibraryNoStaticAssets.dll")).Should().Exist(); result.Should().NuPkgDoesNotContain( - Path.Combine(projectDirectory.Path, "bin", "Debug", "PackageLibraryNoStaticAssets.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryNoStaticAssets.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets"), @@ -1003,13 +1004,13 @@ public void Pack_Incremental_IncludesStaticWebAssets() var testAsset = "PackageLibraryDirectDependency"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset, subdirectory: "TestPackages"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); result.Should().Pass(); - var pack2 = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack2 = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack2.WithWorkingDirectory(projectDirectory.Path); var result2 = pack2.Execute("/bl"); @@ -1020,7 +1021,7 @@ public void Pack_Incremental_IncludesStaticWebAssets() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result2.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack2.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets", "js", "pkg-direct-dep.js"), @@ -1041,7 +1042,7 @@ public void Pack_StaticWebAssets_WithoutFileExtension_AreCorrectlyPacked() File.WriteAllText(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "wwwroot", "LICENSE"), "license file contents"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); @@ -1052,7 +1053,7 @@ public void Pack_StaticWebAssets_WithoutFileExtension_AreCorrectlyPacked() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets", "js", "pkg-direct-dep.js"), @@ -1074,7 +1075,7 @@ public void Build_StaticWebAssets_GeneratePackageOnBuild_PacksStaticWebAssets() File.WriteAllText(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "wwwroot", "LICENSE"), "license file contents"); - var buildCommand = new BuildCommand(Log, projectDirectory.Path, "PackageLibraryDirectDependency"); + var buildCommand = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); buildCommand.WithWorkingDirectory(projectDirectory.Path); var result = buildCommand.Execute("/p:GeneratePackageOnBuild=true", "/bl"); @@ -1085,7 +1086,7 @@ public void Build_StaticWebAssets_GeneratePackageOnBuild_PacksStaticWebAssets() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(buildCommand.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets", "js", "pkg-direct-dep.js"), @@ -1106,7 +1107,7 @@ public void Build_StaticWebAssets_GeneratePackageOnBuild_DoesNotIncludeAssetsAsC File.WriteAllText(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "wwwroot", "LICENSE"), "license file contents"); - var buildCommand = new BuildCommand(Log, projectDirectory.Path, "PackageLibraryDirectDependency"); + var buildCommand = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); buildCommand.WithWorkingDirectory(projectDirectory.Path); var result = buildCommand.Execute("/p:GeneratePackageOnBuild=true", "/bl"); @@ -1117,7 +1118,7 @@ public void Build_StaticWebAssets_GeneratePackageOnBuild_DoesNotIncludeAssetsAsC new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgDoesNotContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(buildCommand.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("content", "js", "pkg-direct-dep.js"), @@ -2453,7 +2454,7 @@ public void Pack_DoesNotInclude_TransitiveBundleOrScopedCssAsStaticWebAsset() var testAsset = "PackageLibraryDirectDependency"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset, subdirectory: "TestPackages"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.TestRoot); var result = pack.Execute("/bl"); @@ -2464,7 +2465,7 @@ public void Pack_DoesNotInclude_TransitiveBundleOrScopedCssAsStaticWebAsset() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgDoesNotContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { // This is to make sure we don't include the scoped css files on the package when bundling is enabled. @@ -2479,7 +2480,7 @@ public void Pack_DoesNotIncludeStaticWebAssetsAsContent() var testAsset = "PackageLibraryDirectDependency"; var projectDirectory = CreateAspNetSdkTestAsset(testAsset, subdirectory: "TestPackages"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); var result = pack.Execute(); result.Should().Pass(); @@ -2489,7 +2490,7 @@ public void Pack_DoesNotIncludeStaticWebAssetsAsContent() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgDoesNotContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("content", "wwwroot", "js", "pkg-direct-dep.js"), @@ -2514,7 +2515,7 @@ public void Pack_NoBuild_IncludesStaticWebAssets() var build = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); build.Execute().Should().Pass(); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.TestRoot); var result = pack.Execute("/p:NoBuild=true", "/bl"); @@ -2523,7 +2524,7 @@ public void Pack_NoBuild_IncludesStaticWebAssets() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(build.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("staticwebassets", "js", "pkg-direct-dep.js"), @@ -2545,7 +2546,7 @@ public void Pack_NoBuild_DoesNotIncludeFilesAsContent() var build = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); build.Execute().Should().Pass(); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.TestRoot); var result = pack.Execute("/p:NoBuild=true", "/bl"); @@ -2554,7 +2555,7 @@ public void Pack_NoBuild_DoesNotIncludeFilesAsContent() new FileInfo(Path.Combine(outputPath, "PackageLibraryDirectDependency.dll")).Should().Exist(); result.Should().NuPkgDoesNotContain( - Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "bin", "Debug", "PackageLibraryDirectDependency.1.0.0.nupkg"), + Path.Combine(pack.GetPackageDirectory().FullName, "PackageLibraryDirectDependency.1.0.0.nupkg"), filePaths: new[] { Path.Combine("content", "wwwroot", "js", "pkg-direct-dep.js"), @@ -2598,7 +2599,7 @@ public void Pack_Incremental_DoesNotRegenerateCacheAndPropsFiles() .CopyTestAsset(testAsset, testAssetSubdirectory: "TestPackages") .WithSource(); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path); + var pack = new MSBuildCommand(projectDirectory, "Pack"); pack.WithWorkingDirectory(projectDirectory.TestRoot); var result = pack.Execute("/bl"); diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs index 2a61a4260565..fa7ba8476a32 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs @@ -42,7 +42,7 @@ private string SetupNuGetPackage(bool multiTarget, [CallerMemberName] string cal _testRoot = helloWorldAsset.TestRoot; - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); var result = packCommand.Execute(); result.Should().Pass(); diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs index d2e186501949..83da3d3f5ef3 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs @@ -39,7 +39,7 @@ public void It_finds_the_entry_point_dll_and_put_in_setting_file() propertyGroup.Add(new XElement("ToolEntryPoint", explicitEntryPoint)); }); - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); packCommand.Execute(); @@ -74,7 +74,7 @@ public void It_finds_commandName_and_put_in_setting_file() XElement propertyGroup = project.Root.Elements(ns + "PropertyGroup").First(); propertyGroup.Add(new XElement("ToolCommandName", explicitCommandName)); }); - var packCommand = new PackCommand(Log, helloWorldAsset.TestRoot); + var packCommand = new PackCommand(helloWorldAsset); packCommand.Execute(); diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs index 6d655e2c420c..dc34077477c8 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs @@ -62,11 +62,10 @@ public void It_builds_successfully() public void It_builds_and_result_contains_dependencies_dll() { TestAsset testAsset = SetupAndRestoreTestAsset(); - var appProjectDirectory = Path.Combine(testAsset.TestRoot, "App"); var buildCommand = new BuildCommand(testAsset, "App"); buildCommand.Execute(); - var packCommand = new PackCommand(Log, appProjectDirectory); + var packCommand = new PackCommand(testAsset, "App"); // Do not run pack, just use it to get nupkg since it should be run by build. var nugetPackage = packCommand.GetNuGetPackage(); diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs index 5cb1c2823ed2..79284ee1d5b2 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs +++ b/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs @@ -26,8 +26,7 @@ private string SetupNuGetPackage([CallerMemberName] string callingMethod = "") .CopyTestAsset("PortableToolWithP2P", callingMethod) .WithSource(); - var appProjectDirectory = Path.Combine(testAsset.TestRoot, "App"); - var packCommand = new PackCommand(Log, appProjectDirectory); + var packCommand = new PackCommand(testAsset, "App"); packCommand.Execute(); diff --git a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs b/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs index 4595ae11ffb7..ecb00e5accd1 100644 --- a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs +++ b/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs @@ -40,7 +40,9 @@ public void ItBuildsARunnableOutput() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputDll = Path.Combine(testInstance.Path, "bin", configuration, ToolsetInfo.CurrentTargetFramework, $"{testAppName}.dll"); + var outputPathCalculator = OutputPathCalculator.FromTestAsset(testInstance.Path); + + var outputDll = Path.Combine(outputPathCalculator.GetOutputDirectory(configuration: configuration), $"{testAppName}.dll"); var outputRunCommand = new DotnetCommand(Log); @@ -129,7 +131,7 @@ public void ItRunsWhenRestoringToSpecificPackageDir() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; var outputDll = Directory.EnumerateFiles( - Path.Combine(rootPath, "bin", configuration, ToolsetInfo.CurrentTargetFramework), "*.dll", + OutputPathCalculator.FromTestAsset(rootPath).GetOutputDirectory(configuration: configuration), "*.dll", SearchOption.TopDirectoryOnly) .Single(); diff --git a/src/Tests/dotnet-pack.Tests/PackTests.cs b/src/Tests/dotnet-pack.Tests/PackTests.cs index 8795ea4a19af..5900d9cc3733 100644 --- a/src/Tests/dotnet-pack.Tests/PackTests.cs +++ b/src/Tests/dotnet-pack.Tests/PackTests.cs @@ -267,7 +267,7 @@ public void ItPacksAppWhenRestoringToSpecificPackageDirectory() .Should() .Pass(); - new DirectoryInfo(Path.Combine(rootPath, "bin")) + new DirectoryInfo(Path.Combine(rootPath, "artifacts")) .Should().HaveFilesMatching("*.nupkg", SearchOption.AllDirectories); } diff --git a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs index 5f3dccb82dd4..6e1b0b676074 100644 --- a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs +++ b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs @@ -48,7 +48,7 @@ public void ItPublishesARunnablePortableApp() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputDll = Path.Combine(testProjectDirectory, "bin", configuration, ToolsetInfo.CurrentTargetFramework, "publish", $"{testAppName}.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetPublishDirectory(configuration: configuration), $"{testAppName}.dll"); new DotnetCommand(Log) .Execute(outputDll) @@ -331,7 +331,7 @@ public void ItPublishesAppWhenRestoringToSpecificPackageDirectory() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputProgram = Path.Combine(rootDir, "bin", configuration, ToolsetInfo.CurrentTargetFramework, "publish", $"TestAppSimple.dll"); + var outputProgram = Path.Combine(OutputPathCalculator.FromTestAsset(rootDir).GetPublishDirectory(configuration: configuration), $"TestAppSimple.dll"); new DotnetCommand(Log, outputProgram) .Execute() @@ -383,7 +383,7 @@ public void ItPublishesSuccessfullyWithNoBuildIfPreviouslyBuilt(bool selfContain var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputProgram = Path.Combine(rootPath, "bin", configuration, ToolsetInfo.CurrentTargetFramework, rid, "publish", $"TestAppSimple.dll"); + var outputProgram = Path.Combine(OutputPathCalculator.FromTestAsset(rootPath).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid), $"TestAppSimple.dll"); new DotnetCommand(Log, outputProgram) .Execute() diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs index 820f8a1a0c31..fe14024ec787 100644 --- a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs +++ b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs @@ -619,13 +619,13 @@ public void WhenReferenceIsRemovedSlnBuilds() var reasonString = "should be built in release mode, otherwise it means build configurations are missing from the sln file"; - var releaseDirectory = Directory.EnumerateDirectories( - Path.Combine(projectDirectory, "App", "bin"), - "Release", - SearchOption.AllDirectories); - releaseDirectory.Count().Should().Be(1, $"App {reasonString}"); - Directory.EnumerateFiles(releaseDirectory.Single(), "App.dll", SearchOption.AllDirectories) - .Count().Should().Be(1, $"App {reasonString}"); + var outputCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "App")); + + new DirectoryInfo(outputCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); + + var outputDirectory = new DirectoryInfo(outputCalculator.GetOutputDirectory(configuration: "Release")); + outputDirectory.Should().Exist(); + outputDirectory.Should().HaveFile("App.dll"); } [Fact] diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs index d17ab2294344..758b076a2515 100644 --- a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs +++ b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs @@ -33,11 +33,13 @@ public void TestsFromAGivenContainerShouldRunWithExpectedOutput() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - new BuildCommand(testAsset) + var buildCommand = new BuildCommand(testAsset); + + buildCommand .Execute() .Should().Pass(); - var outputDll = Path.Combine(testRoot, "bin", configuration, ToolsetInfo.CurrentTargetFramework, $"{testAppName}.dll"); + var outputDll = Path.Combine(buildCommand.GetOutputDirectory(configuration: configuration).FullName, $"{testAppName}.dll"); // Call vstest var result = new DotnetTestCommand(Log) diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs index aec125674ea2..36e709b66dd8 100644 --- a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs +++ b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs @@ -61,7 +61,7 @@ public void GivenADllAndMultipleTestRunParametersItPassesThemToVStestConsoleInTh .Execute() .Should().Pass(); - var outputDll = Path.Combine(testProjectDirectory, "bin", configuration, ToolsetInfo.CurrentTargetFramework, "VSTestTestRunParameters.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); // Call test CommandResult result = new DotnetTestCommand(Log) diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs b/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs index 3f00a0bf7322..6ed9e878e239 100644 --- a/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs +++ b/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs @@ -75,11 +75,13 @@ public void ItPassesEnvironmentVariablesFromCommandLineParametersWhenRunningViaD var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - new BuildCommand(testAsset) + var buildCommand = new BuildCommand(testAsset); + + buildCommand .Execute() .Should().Pass(); - var outputDll = Path.Combine(testRoot, "bin", configuration, ToolsetInfo.CurrentTargetFramework, $"{TestAppName}.dll"); + var outputDll = Path.Combine(buildCommand.GetOutputDirectory(configuration: configuration).FullName, $"{TestAppName}.dll"); var result = new DotnetTestCommand(Log, EnvironmentVariables) .Execute(outputDll, $"{ConsoleLoggerOutputDetailed[0]}:{ConsoleLoggerOutputDetailed[1]}"); diff --git a/src/Tests/dotnet-vstest.Tests/VSTestTests.cs b/src/Tests/dotnet-vstest.Tests/VSTestTests.cs index 5ad3fa26d217..776b325e74f2 100644 --- a/src/Tests/dotnet-vstest.Tests/VSTestTests.cs +++ b/src/Tests/dotnet-vstest.Tests/VSTestTests.cs @@ -33,11 +33,13 @@ public void TestsFromAGivenContainerShouldRunWithExpectedOutput() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - new BuildCommand(testAsset) + var buildCommand = new BuildCommand(testAsset); + + buildCommand .Execute() .Should().Pass(); - var outputDll = Path.Combine(testRoot, "bin", configuration, ToolsetInfo.CurrentTargetFramework, $"{testAppName}.dll"); + var outputDll = Path.Combine(buildCommand.GetOutputDirectory(configuration: configuration).FullName, $"{testAppName}.dll"); // Call vstest var result = new DotnetVSTestCommand(Log) @@ -66,7 +68,7 @@ public void GivenADllAndMultipleTestRunParametersItPassesThemToVStestConsoleInTh .Execute() .Should().Pass(); - var outputDll = Path.Combine(testProjectDirectory, "bin", configuration, ToolsetInfo.CurrentTargetFramework, "VSTestTestRunParameters.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); // Call test CommandResult result = new DotnetVSTestCommand(Log) diff --git a/src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs b/src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs index aaa90534e26f..c55a8ac8ba0c 100644 --- a/src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs +++ b/src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs @@ -49,17 +49,15 @@ public void ICanPublicAndRunVBApps() var testInstance = _testAssetsManager.CopyTestAsset("VBTestApp") .WithSource(); - new PublishCommand(Log, testInstance.Path) + var publishCommand = new PublishCommand(testInstance); + + publishCommand .Execute() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; var outputDll = Path.Combine( - testInstance.Path, - "bin", - configuration, - ToolsetInfo.CurrentTargetFramework, - "publish", + publishCommand.GetOutputDirectory(configuration: configuration).FullName, "VBTestApp.dll"); new DotnetCommand(Log) From 0d117bf98b03db45a127c70053aa0568930edd0b Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Wed, 11 Jan 2023 21:39:27 -0500 Subject: [PATCH 10/27] Update tests --- .../COMReferenceTests.cs | 2 +- .../GivenThatWeWantToBuildACppCliProject.cs | 7 ++-- ...venThatWeWantToPublishAComServerLibrary.cs | 2 +- .../WasmPublishIntegrationTest.cs | 2 +- .../StaticWebAssetsIntegrationTest.cs | 38 +++++++++---------- .../PublishTests.cs | 4 +- 6 files changed, 27 insertions(+), 28 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs b/src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs index b4d9dd473235..e967989ba781 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs @@ -119,7 +119,7 @@ static void Main(string[] args) .CreateTestProject(testProject) .WithProjectChanges(doc => doc.Root.Add(new[] { reference1, reference2 })); - var buildCommand = new BuildCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); + var buildCommand = new BuildCommand(testAsset); buildCommand.Execute().Should().Pass(); var outputDirectory = buildCommand.GetOutputDirectory(targetFramework); diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs index e1c4156ae6bd..18497882644d 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs @@ -40,15 +40,14 @@ public void It_builds_and_runs() .Should() .Pass(); - new BuildCommand(testAsset, "CSConsoleApp") + var buildCommand = new BuildCommand(testAsset, "CSConsoleApp"); + buildCommand .Execute(new string[] { "-p:Platform=x64", "-p:BuildProjectReferences=false" }) .Should() .Pass(); var exe = Path.Combine( //find the platform directory - new DirectoryInfo(Path.Combine(testAsset.TestRoot, "CSConsoleApp", "bin")).GetDirectories().Single().FullName, - "Debug", - ToolsetInfo.CurrentTargetFramework, + buildCommand.GetOutputDirectory().FullName, "CSConsoleApp.exe"); var runCommand = new RunExeCommand(Log, exe); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs index 9587a35c352c..41734f9704d7 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs @@ -31,7 +31,7 @@ public void It_publishes_comhost_to_the_publish_folder() .Pass(); var publishDirectory = publishCommand.GetOutputDirectory(ToolsetInfo.CurrentTargetFramework); - var outputDirectory = publishDirectory.Parent; + var outputDirectory = new BuildCommand(testAsset).GetOutputDirectory(); var filesPublished = new[] { "ComServer.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index 5cd3b42cc28e..cbdff1e8fc42 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -719,7 +719,7 @@ public void Publish_HostedApp_WithoutTrimming_Works() buildCommand.Execute().Should().Pass(); // Publish - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute("/p:BuildDependencies=false /bl").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs index 827f7b299821..a1b7aa0f972e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs @@ -1142,13 +1142,13 @@ public void Pack_MultipleTargetFrameworks_Works() tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); @@ -1183,17 +1183,17 @@ public void Pack_MultipleTargetFrameworks_NoBuild_IncludesStaticWebAssets() tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); - var build = new BuildCommand(Log, projectDirectory.Path, "PackageLibraryDirectDependency"); + var build = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); build.WithWorkingDirectory(projectDirectory.Path); var buildResult = build.Execute("/bl"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/p:NoBuild=true", "/bl"); @@ -1228,8 +1228,8 @@ public void Pack_MultipleTargetFrameworks_NoBuild_DoesNotIncludeAssetsAsContent( tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); @@ -1238,7 +1238,7 @@ public void Pack_MultipleTargetFrameworks_NoBuild_DoesNotIncludeAssetsAsContent( build.WithWorkingDirectory(projectDirectory.Path); var buildResult = build.Execute("/bl"); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/p:NoBuild=true", "/bl"); @@ -1271,13 +1271,13 @@ public void Pack_MultipleTargetFrameworks_GeneratePackageOnBuild_IncludesStaticW tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); - var build = new BuildCommand(Log, projectDirectory.Path, "PackageLibraryDirectDependency"); + var build = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); build.WithWorkingDirectory(projectDirectory.Path); var result = build.Execute("/p:GeneratePackageOnBuild=true", "/bl"); @@ -1312,13 +1312,13 @@ public void Pack_MultipleTargetFrameworks_GeneratePackageOnBuild_DoesNotIncludeA tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); - var build = new BuildCommand(Log, projectDirectory.Path, "PackageLibraryDirectDependency"); + var build = new BuildCommand(projectDirectory, "PackageLibraryDirectDependency"); build.WithWorkingDirectory(projectDirectory.Path); var result = build.Execute("/p:GeneratePackageOnBuild=true", "/bl"); @@ -2421,13 +2421,13 @@ public void Pack_MultipleTargetFrameworks_DoesNotIncludeAssetsAsContent() tfm.Name = "TargetFrameworks"; tfm.FirstNode.ReplaceWith(tfm.FirstNode.ToString() + ";netstandard2.1"); - document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Parent.Remove(); - document.Descendants("FrameworkReference").SingleOrDefault()?.Parent.Remove(); + document.Descendants("AddRazorSupportForMvc").SingleOrDefault()?.Remove(); + document.Descendants("FrameworkReference").SingleOrDefault()?.Remove(); }); Directory.Delete(Path.Combine(projectDirectory.Path, "PackageLibraryDirectDependency", "Components"), recursive: true); - var pack = new MSBuildCommand(Log, "Pack", projectDirectory.Path, "PackageLibraryDirectDependency"); + var pack = new MSBuildCommand(projectDirectory, "Pack", "PackageLibraryDirectDependency"); pack.WithWorkingDirectory(projectDirectory.Path); var result = pack.Execute("/bl"); diff --git a/src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs b/src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs index 430f9f855d4b..2e4142f2889b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs @@ -34,8 +34,8 @@ public void TrimmingOptions_Are_Defaulted_Correctly_On_Trimmed_Apps(string targe var testAsset = _testAssetsManager.CreateTestProject(testProject, identifier: projectName + targetFramework); - var publishCommand = new PublishCommand(Log, Path.Combine(testAsset.TestRoot, testProject.Name)); - publishCommand.Execute().Should().Pass(); + var publishCommand = new PublishCommand(testAsset); + publishCommand.Execute($"/p:RuntimeIdentifier={rid}").Should().Pass(); var buildProperties = testProject.GetPropertyValues(testAsset.TestRoot, targetFramework); buildProperties["TrimMode"].Should().Be("partial"); From 27ae9ebcd7b1214857cda6d33eef1242b23fd800 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 12 Jan 2023 09:59:55 -0500 Subject: [PATCH 11/27] Fix tests --- .../WasmAoTPublishIntegrationTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs index 54fb6f6c4d0d..2e27685f7098 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs @@ -30,7 +30,7 @@ public void AoT_Publish_InRelease_Works() var testInstance = CreateAspNetSdkTestAssetWithAot(testAppName, new [] { "blazorwasm" }); File.WriteAllText(Path.Combine(testInstance.TestRoot, "blazorwasm", "App.razor.css"), "h1 { font-size: 16px; }"); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:Configuration=Release").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm, "Release"); @@ -68,7 +68,7 @@ public void AoT_Publish_WithExistingWebConfig_Works() var webConfigContents = "test webconfig contents"; File.WriteAllText(Path.Combine(testInstance.TestRoot, "blazorwasm", "web.config"), webConfigContents); - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorwasm")); + var publishCommand = new PublishCommand(testInstance, "blazorwasm"); publishCommand.Execute("/p:Configuration=Release").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm, "Release"); @@ -91,7 +91,7 @@ public void AoT_Publish_HostedAppWithScopedCss_VisualStudio() buildCommand.Execute("/p:BuildInsideVisualStudio=true /p:Configuration=Release").Should().Pass(); // Publish - var publishCommand = new PublishCommand(Log, Path.Combine(testInstance.TestRoot, "blazorhosted")); + var publishCommand = new PublishCommand(testInstance, "blazorhosted"); publishCommand.Execute("/p:BuildProjectReferences=false /p:BuildInsideVisualStudio=true /p:Configuration=Release").Should().Pass(); var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm); From c5be0db8f44f863c1f6ff1944ad3eb60e25c77b4 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 12 Jan 2023 15:20:13 -0500 Subject: [PATCH 12/27] Fix test --- .../WasmAoTPublishIntegrationTest.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs index 2e27685f7098..74491eb0c6bb 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs @@ -73,9 +73,11 @@ public void AoT_Publish_WithExistingWebConfig_Works() var publishDirectory = publishCommand.GetOutputDirectory(DefaultTfm, "Release"); + var webConfig = new BuildCommand(testInstance, "blazorwasm").GetOutputDirectory(configuration: "Release").File("web.config"); + // Verify web.config - new FileInfo(Path.Combine(publishDirectory.ToString(), "..", "web.config")).Should().Exist(); - new FileInfo(Path.Combine(publishDirectory.ToString(), "..", "web.config")).Should().Contain(webConfigContents); + webConfig.Should().Exist(); + webConfig.Should().Contain(webConfigContents); } [RequiresMSBuildVersionFact("17.0.0")] From 24626919ffd080eeb6aed7df6a3512554ebb9bcf Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 27 Jan 2023 09:39:34 -0500 Subject: [PATCH 13/27] Switch from artifacts to bin folder for new format, rename properties --- .../Microsoft.NET.Build.Tasks/sdk/Sdk.props | 18 +++---- .../Microsoft.NET.DefaultOutputPaths.targets | 50 ++++++++----------- ...oft.NET.RuntimeIdentifierInference.targets | 4 +- .../Microsoft.NET.Sdk.BeforeCommon.targets | 4 +- .../EndToEnd.Tests/GivenDotNetUsesMSBuild.cs | 2 +- .../GivenThatWeWantToBuildANetCoreApp.cs | 14 +++--- ...ntToBuildASolutionWithNonAnyCPUPlatform.cs | 2 +- .../WasmBuildIntegrationTest.cs | 2 +- .../WasmPublishIntegrationTest.cs | 2 +- .../Commands/GetValuesCommand.cs | 2 +- .../OutputPathCalculator.cs | 22 ++++---- .../ProjectConstruction/TestProject.cs | 2 +- src/Tests/dotnet-pack.Tests/PackTests.cs | 2 +- 13 files changed, 60 insertions(+), 66 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props index 2272634f3935..11890881832a 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props +++ b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props @@ -34,7 +34,7 @@ Copyright (c) .NET Foundation. All rights reserved. - - - true - - artifacts\ - $([MSBuild]::EnsureTrailingSlash($(BaseArtifactsPath))) + + + true - $(BaseArtifactsPath)bin\ - $(BaseArtifactsPath)intermediates\ + bin\ + $([MSBuild]::EnsureTrailingSlash($(BaseStandardOutputPath))) + + $(BaseStandardOutputPath)build\ + $(BaseStandardOutputPath)obj\ diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index 2b29b904b665..517d43af2278 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -25,23 +25,23 @@ Copyright (c) .NET Foundation. All rights reserved. true - - - true + true - - - artifacts\ - $([MSBuild]::EnsureTrailingSlash($(BaseArtifactsPath))) + + + bin\ + $([MSBuild]::EnsureTrailingSlash($(BaseStandardOutputPath))) - $(BaseArtifactsPath)bin\ + $(BaseStandardOutputPath)build\ - + bin\ $(BaseOutputPath)\ $(BaseOutputPath)$(Configuration)\ @@ -49,9 +49,9 @@ Copyright (c) .NET Foundation. All rights reserved. $(OutputPath)\ - - + + obj\ $(BaseIntermediateOutputPath)\ $(BaseIntermediateOutputPath)$(Configuration)\ @@ -61,43 +61,37 @@ Copyright (c) .NET Foundation. All rights reserved. - $(OutputPath) - $(BaseArtifactsPath)\package\$(Configuration.ToLowerInvariant())\ + $(OutputPath) + $(BaseStandardOutputPath)\package\$(Configuration.ToLowerInvariant())\ - + $(DefaultItemExcludes);$(OutputPath)/** $(DefaultItemExcludes);$(IntermediateOutputPath)/** - - $(DefaultItemExcludes);$(BaseArtifactsPath)/** - - - $(DefaultItemExcludes);bin/** - $(DefaultItemExcludes);obj/** + + $(DefaultItemExcludes);$(BaseStandardOutputPath)/** - $(OutputPath)$(TargetFramework.ToLowerInvariant())\ - $(IntermediateOutputPath)$(TargetFramework.ToLowerInvariant())\ - + <_ArtifactPivots>$(Configuration.ToLowerInvariant()) publish - $(BaseArtifactsPath)$(PublishDirName)\$(_ArtifactPivots)\ + $(BaseStandardOutputPath)$(PublishDirName)\$(_ArtifactPivots)\ - + $(BaseIntermediateOutputPath)$(_ArtifactPivots)\ diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets index 07d07e979990..e333fc879839 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets @@ -302,8 +302,8 @@ Copyright (c) .NET Foundation. All rights reserved. append a RID the user never mentioned in the path and do so even in the AnyCPU case. --> - $(IntermediateOutputPath)$(RuntimeIdentifier)\ - $(OutputPath)$(RuntimeIdentifier)\ + $(IntermediateOutputPath)$(RuntimeIdentifier)\ + $(OutputPath)$(RuntimeIdentifier)\ - + If using standard output path format, PublishDir is already set in Microsoft.NET.DefaultOutputPaths.targets --> + publish GetValues() DirectoryInfo GetValuesDirectory(string targetFramework = "", string configuration = "Debug") { // Use a consistent directory format to put the values text file in, so we don't have to worry about - // whether the project uses the artifacts output format or not + // whether the project uses the standard output path format or not targetFramework = targetFramework ?? string.Empty; configuration = configuration ?? string.Empty; diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 2ff862a9b508..97f6e977dd58 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -20,7 +20,7 @@ public class OutputPathCalculator public string ProjectPath { get; set; } public string TargetFramework { get; set; } public string RuntimeIdentifier { get; set; } - public bool? UseArtifactsOutput { get; set; } + public bool? UseStandardOutputPaths { get; set; } public bool IsSdkProject { get; set; } = true; @@ -53,7 +53,7 @@ public static OutputPathCalculator FromTestProject(string projectPath, TestProje ProjectPath = projectPath, TargetFramework = testProject.TargetFrameworks, RuntimeIdentifier = testProject.RuntimeIdentifier, - UseArtifactsOutput = testProject.UseArtifactsOutput, + UseStandardOutputPaths = testProject.UseStandardOutputPaths, IsSdkProject = testProject.IsSdkProject }; @@ -111,11 +111,11 @@ public bool IsMultiTargeted() } - private bool UsesArtifactsFolder() + private bool UsesStandardOutputPaths() { - if (UseArtifactsOutput.HasValue) + if (UseStandardOutputPaths.HasValue) { - return UseArtifactsOutput.Value; + return UseStandardOutputPaths.Value; } if (!IsSdkProject) @@ -152,7 +152,7 @@ private bool UsesArtifactsFolder() public string GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { - if (UsesArtifactsFolder()) + if (UsesStandardOutputPaths()) { string pivot = configuration.ToLowerInvariant(); if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) @@ -167,7 +167,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura { pivot += "_" + runtimeIdentifier; } - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "artifacts", "bin", pivot); + return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "build", pivot); } else { @@ -186,7 +186,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura public string GetPublishDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { - if (UsesArtifactsFolder()) + if (UsesStandardOutputPaths()) { string pivot = configuration.ToLowerInvariant(); if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) @@ -201,7 +201,7 @@ public string GetPublishDirectory(string targetFramework = null, string configur { pivot += "_" + runtimeIdentifier; } - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "artifacts", "publish", pivot); + return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "publish", pivot); } else { @@ -234,9 +234,9 @@ public string GetIntermediateDirectory(string targetFramework = null, string con public string GetPackageDirectory(string configuration = "Debug") { - if (UsesArtifactsFolder()) + if (UsesStandardOutputPaths()) { - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "artifacts", "package", configuration.ToLowerInvariant()); + return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "package", configuration.ToLowerInvariant()); } else { diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs index c1e055b36e0a..54461c2301e9 100644 --- a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs +++ b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs @@ -49,7 +49,7 @@ public TestProject([CallerMemberName] string name = null) public string TargetFrameworkProfile { get; set; } - public bool? UseArtifactsOutput { get; set; } + public bool? UseStandardOutputPaths { get; set; } public List ReferencedProjects { get; } = new List(); diff --git a/src/Tests/dotnet-pack.Tests/PackTests.cs b/src/Tests/dotnet-pack.Tests/PackTests.cs index 5900d9cc3733..8795ea4a19af 100644 --- a/src/Tests/dotnet-pack.Tests/PackTests.cs +++ b/src/Tests/dotnet-pack.Tests/PackTests.cs @@ -267,7 +267,7 @@ public void ItPacksAppWhenRestoringToSpecificPackageDirectory() .Should() .Pass(); - new DirectoryInfo(Path.Combine(rootPath, "artifacts")) + new DirectoryInfo(Path.Combine(rootPath, "bin")) .Should().HaveFilesMatching("*.nupkg", SearchOption.AllDirectories); } From 9b0dcd2ee8b705e19566737168c6f15880c43130 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 27 Jan 2023 15:28:26 -0500 Subject: [PATCH 14/27] Add support for RootOutputPath --- .../Microsoft.NET.Build.Tasks/sdk/Sdk.props | 11 + .../Microsoft.NET.DefaultOutputPaths.targets | 17 +- .../RootOutputPathTests.cs | 188 ++++++++++++++++++ .../ProjectConstruction/TestProject.cs | 2 +- .../TestAssetsManager.cs | 3 +- 5 files changed, 216 insertions(+), 5 deletions(-) create mode 100644 src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props index 11890881832a..feb4ae7c7f26 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props +++ b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props @@ -57,6 +57,12 @@ Copyright (c) .NET Foundation. All rights reserved. false + + + true + $(RootOutputPath) + + true @@ -66,6 +72,11 @@ Copyright (c) .NET Foundation. All rights reserved. $(BaseStandardOutputPath)build\ $(BaseStandardOutputPath)obj\ + + + $(BaseOutputPath)$(MSBuildProjectName)\ + $(BaseIntermediateOutputPath)$(MSBuildProjectName)\ diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index 517d43af2278..31f8cad0bdb0 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -33,12 +33,21 @@ Copyright (c) .NET Foundation. All rights reserved. true + + + true + $(RootOutputPath) + + - + bin\ $([MSBuild]::EnsureTrailingSlash($(BaseStandardOutputPath))) - $(BaseStandardOutputPath)build\ + $(BaseStandardOutputPath)build\ + + + $(BaseOutputPath)$(MSBuildProjectName)\ @@ -115,7 +124,9 @@ Copyright (c) .NET Foundation. All rights reserved. publish - $(BaseStandardOutputPath)$(PublishDirName)\$(_ArtifactPivots)\ + + $(BaseStandardOutputPath)$(PublishDirName)\$(_ArtifactPivots)\ + $(BaseStandardOutputPath)$(PublishDirName)\$(MSBuildProjectName)\$(_ArtifactPivots)\ diff --git a/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs b/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs new file mode 100644 index 000000000000..bd47b25a881e --- /dev/null +++ b/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs @@ -0,0 +1,188 @@ +// 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.Diagnostics.Contracts; +using System.IO; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Text; +using System.Threading.Tasks; +using FluentAssertions; +using Microsoft.NET.TestFramework; +using Microsoft.NET.TestFramework.Assertions; +using Microsoft.NET.TestFramework.Commands; +using Microsoft.NET.TestFramework.ProjectConstruction; +using Xunit; +using Xunit.Abstractions; +using Xunit.Sdk; + + +namespace Microsoft.NET.Build.Tests +{ + public class RootOutputPathTests : SdkTest + { + public RootOutputPathTests(ITestOutputHelper log) : base(log) + { + } + + (List testProjects, TestAsset testAsset) GetTestProjects(bool setRootOutputInProject, [CallerMemberName] string callingMethod = "") + { + var testProject1 = new TestProject() + { + Name = "App1", + IsExe = true + }; + + var testProject2 = new TestProject() + { + Name = "App2", + IsExe = true + }; + + var testLibraryProject = new TestProject() + { + Name = "Library", + }; + + testProject1.ReferencedProjects.Add(testLibraryProject); + testProject2.ReferencedProjects.Add(testLibraryProject); + + List testProjects = new() { testProject1, testProject2, testLibraryProject }; + + if (setRootOutputInProject) + { + foreach (var testProject in testProjects) + { + testProject.AdditionalProperties["RootOutputPath"] = "..\\artifacts"; + } + } + + var testAsset = _testAssetsManager.CreateTestProjects(testProjects, callingMethod: callingMethod, identifier: setRootOutputInProject.ToString()); + + if (!setRootOutputInProject) + { + File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), + """ + + + $(MSBuildThisFileDirectory)\artifacts + + + """); + } + + return (testProjects, testAsset); + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void ItUsesRootOutputPathForBuild(bool setRootOutputInProject) + { + var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + + new DotnetCommand(Log, "build") + .WithWorkingDirectory(testAsset.Path) + .Execute() + .Should() + .Pass(); + + ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + + foreach (var testProject in testProjects) + { + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + .Should() + .Exist(); + } + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void ItUsesRootOutputPathForPublish(bool setRootOutputInProject) + { + var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + + new DotnetCommand(Log, "publish") + .WithWorkingDirectory(testAsset.Path) + .Execute() + .Should() + .Pass(); + + ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + + foreach (var testProject in testProjects) + { + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + .Should() + .Exist(); + + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "publish", testProject.Name, "debug", testProject.Name + ".dll")) + .Should() + .Exist(); + } + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void ItUsesRootOutputPathForPack(bool setRootOutputInProject) + { + var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + + new DotnetCommand(Log, "pack") + .WithWorkingDirectory(testAsset.Path) + .Execute() + .Should() + .Pass(); + + ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + + foreach (var testProject in testProjects) + { + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + .Should() + .Exist(); + + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "package", "debug", testProject.Name + ".1.0.0.nupkg")) + .Should() + .Exist(); + } + } + + void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable testProjects, bool setRootOutputInProject) + { + foreach (var testProject in testProjects) + { + if (setRootOutputInProject) + { + new DirectoryInfo(Path.Combine(testAsset.TestRoot, testProject.Name)) + .Should() + .HaveDirectory("obj"); + + new DirectoryInfo(Path.Combine(testAsset.TestRoot, testProject.Name, "bin")) + .Should() + .NotExist(); + + new DirectoryInfo(Path.Combine(testAsset.TestRoot, "artifacts", "obj")) + .Should() + .NotExist(); + } + else + { + new DirectoryInfo(Path.Combine(testAsset.TestRoot, testProject.Name)) + .Should() + .NotHaveSubDirectories(); + + new DirectoryInfo(Path.Combine(testAsset.TestRoot, "artifacts", "obj", testProject.Name, "debug")) + .Should() + .Exist(); + }; + } + } + } +} diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs index 54461c2301e9..d2c5ea727991 100644 --- a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs +++ b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs @@ -38,7 +38,7 @@ public TestProject([CallerMemberName] string name = null) public string ProjectSdk { get; set; } // Applies to SDK Projects - public string TargetFrameworks { get; set; } + public string TargetFrameworks { get; set; } = ToolsetInfo.CurrentTargetFramework; public string RuntimeFrameworkVersion { get; set; } diff --git a/src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs b/src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs index 67496b2010a2..993b3c5d518e 100644 --- a/src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs +++ b/src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs @@ -1,17 +1,18 @@ // 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 FluentAssertions; using Microsoft.NET.TestFramework.Assertions; using Microsoft.NET.TestFramework.Commands; using Microsoft.NET.TestFramework.ProjectConstruction; using System; using System.Collections.Generic; using System.IO; +using System.Linq; using System.Runtime.CompilerServices; using System.Security.Cryptography; using System.Text; using Xunit.Abstractions; -using FluentAssertions; namespace Microsoft.NET.TestFramework { From 63df85488ee1c1d48e1fab535fe2d6327e2ca5f2 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 27 Jan 2023 15:35:04 -0500 Subject: [PATCH 15/27] Don't default to standard output paths based on target framework --- .../Microsoft.NET.DefaultOutputPaths.targets | 6 +- .../OutputPathCalculator.cs | 63 ++++++++++--------- 2 files changed, 39 insertions(+), 30 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index 31f8cad0bdb0..b3f87a046c87 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -25,13 +25,17 @@ Copyright (c) .NET Foundation. All rights reserved. true - + diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 97f6e977dd58..76b7dd81492e 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -118,36 +118,41 @@ private bool UsesStandardOutputPaths() return UseStandardOutputPaths.Value; } - if (!IsSdkProject) - { - return false; - } - - string targetFramework = TryGetTargetFramework(); - - if (targetFramework == null) - { - return false; - } - - if (IsMultiTargeted()) - { - return false; - } + + + // If we end up enabling standard output paths when targeting a certain version of .NET or higher, the logic for the rest of this method would look something like this:s + //if (!IsSdkProject) + //{ + // return false; + //} + + //string targetFramework = TryGetTargetFramework(); + + //if (targetFramework == null) + //{ + // return false; + //} + + //if (IsMultiTargeted()) + //{ + // return false; + //} + + //var framework = NuGetFramework.Parse(targetFramework); + //if (framework.Framework != ".NETCoreApp") + //{ + // return false; + //} + //if (framework.Version.Major >= 8) + //{ + // return true; + //} + //else + //{ + // return false; + //} - var framework = NuGetFramework.Parse(targetFramework); - if (framework.Framework != ".NETCoreApp") - { - return false; - } - if (framework.Version.Major >= 8) - { - return true; - } - else - { - return false; - } + return false; } public string GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") From dca2d3ac579d4beb56daefba906447cc8ff64812 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Mon, 30 Jan 2023 21:21:45 -0500 Subject: [PATCH 16/27] Revert blazor wasm baseline update --- ...ootJsonManifest.Build.staticwebassets.json | 2014 +++++++------- ...iesAreCopiedToBuildOutput.Build.files.json | 472 ++-- ...edToBuildOutput.Build.staticwebassets.json | 2424 ++++++++--------- ...duleTargetPaths.Build.staticwebassets.json | 2040 +++++++------- ...izeBlazorInitialization.Publish.files.json | 16 +- ...nitialization.Publish.staticwebassets.json | 538 ++-- ...tBuildAndPublishModules.Publish.files.json | 16 +- ...ublishModules.Publish.staticwebassets.json | 532 ++-- ...nitialization.Publish.staticwebassets.json | 550 ++-- ...nBlazorBootJsonManifest.Publish.files.json | 16 +- ...tJsonManifest.Publish.staticwebassets.json | 532 ++-- ...Assets_BuildMinimal_Works.Build.files.json | 404 +-- ...ldMinimal_Works.Build.staticwebassets.json | 2014 +++++++------- ...ld_Hosted_Works.Build.staticwebassets.json | 2040 +++++++------- ...ts_PublishMinimal_Works.Publish.files.json | 16 +- ...Minimal_Works.Publish.staticwebassets.json | 532 ++-- ...iles_AsAssets.Publish.staticwebassets.json | 544 ++-- ..._Hosted_Works.Publish.staticwebassets.json | 544 ++-- 18 files changed, 7622 insertions(+), 7622 deletions(-) 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 5b2fcf2f94c3..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -51,10 +51,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -68,10 +68,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -85,10 +85,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -102,10 +102,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -119,10 +119,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -136,10 +136,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -153,10 +153,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -170,10 +170,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -187,10 +187,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -204,10 +204,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -221,10 +221,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -238,10 +238,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -255,10 +255,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -272,10 +272,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -289,10 +289,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -306,10 +306,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -323,10 +323,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -340,10 +340,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -357,10 +357,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -374,10 +374,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -391,10 +391,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -408,10 +408,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -425,10 +425,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -442,10 +442,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -459,10 +459,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -476,10 +476,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -493,10 +493,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -510,10 +510,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -527,10 +527,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -544,10 +544,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -561,10 +561,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -578,10 +578,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -595,10 +595,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -612,10 +612,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -629,10 +629,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -646,10 +646,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -663,10 +663,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -680,10 +680,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -697,10 +697,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -714,10 +714,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -731,10 +731,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -748,10 +748,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -765,10 +765,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -782,10 +782,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -799,10 +799,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -816,10 +816,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -833,10 +833,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -850,10 +850,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -867,10 +867,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -884,10 +884,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -901,10 +901,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -918,10 +918,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -935,10 +935,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -952,10 +952,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -969,10 +969,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -986,10 +986,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1003,10 +1003,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1020,10 +1020,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1037,10 +1037,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1054,10 +1054,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1071,10 +1071,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1088,10 +1088,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1105,10 +1105,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1122,10 +1122,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1139,10 +1139,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1156,10 +1156,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1173,10 +1173,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1190,10 +1190,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1207,10 +1207,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1224,10 +1224,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1241,10 +1241,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1258,10 +1258,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1275,10 +1275,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1292,10 +1292,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1309,10 +1309,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1326,10 +1326,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1343,10 +1343,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1360,10 +1360,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1377,10 +1377,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1394,10 +1394,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1411,10 +1411,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1428,10 +1428,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1445,10 +1445,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1462,10 +1462,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1479,10 +1479,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1496,10 +1496,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1513,10 +1513,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1530,10 +1530,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1547,10 +1547,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1564,10 +1564,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1581,10 +1581,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1598,10 +1598,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1615,10 +1615,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1632,10 +1632,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1649,10 +1649,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1666,10 +1666,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1683,10 +1683,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1700,10 +1700,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1717,10 +1717,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1734,10 +1734,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1751,10 +1751,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1768,10 +1768,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1785,10 +1785,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1802,10 +1802,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1819,10 +1819,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1836,10 +1836,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1870,10 +1870,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1887,10 +1887,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1904,10 +1904,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1921,10 +1921,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1938,10 +1938,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1955,10 +1955,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1972,10 +1972,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1989,10 +1989,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2006,10 +2006,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2023,10 +2023,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2040,10 +2040,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2057,10 +2057,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2074,10 +2074,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2091,10 +2091,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2108,10 +2108,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2125,10 +2125,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2142,10 +2142,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2159,10 +2159,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2176,10 +2176,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2193,10 +2193,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2210,10 +2210,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2227,10 +2227,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2244,10 +2244,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2261,10 +2261,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2278,10 +2278,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2295,10 +2295,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2312,10 +2312,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2329,10 +2329,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2346,10 +2346,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2363,10 +2363,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2380,10 +2380,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2397,10 +2397,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2414,10 +2414,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2431,10 +2431,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2448,10 +2448,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2465,10 +2465,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2482,10 +2482,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2499,10 +2499,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2516,10 +2516,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2533,10 +2533,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2550,10 +2550,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2567,10 +2567,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2584,10 +2584,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2601,10 +2601,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2618,10 +2618,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2635,10 +2635,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2652,10 +2652,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2669,10 +2669,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3454,3418 +3454,3418 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", 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 31afa71fdc68..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,240 +1,240 @@ [ - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "${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\\blazorwasm.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "${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.wasm", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "${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.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "${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.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", 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 3822f1a57362..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 @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -523,10 +523,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -540,10 +540,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -557,10 +557,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1917,10 +1917,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1934,10 +1934,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\classlibrarywithsatelliteassemblies.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb", "AssetKind": "Build", @@ -3461,19 +3461,19 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\classlibrarywithsatelliteassemblies.pdb" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", @@ -3481,16 +3481,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", @@ -3498,16 +3498,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", @@ -3515,16 +3515,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", @@ -3532,10 +3532,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3583,33 +3583,33 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es-ES", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\artifacts\\bin\\debug\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", @@ -3617,16 +3617,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", @@ -3634,16 +3634,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", @@ -3651,16 +3651,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", @@ -3668,10 +3668,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3736,16 +3736,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", @@ -3753,16 +3753,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", @@ -3770,16 +3770,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3787,16 +3787,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3804,16 +3804,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", @@ -3821,16 +3821,16 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", @@ -3838,16 +3838,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", @@ -3855,10 +3855,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3872,10 +3872,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3889,16 +3889,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", @@ -3906,16 +3906,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", @@ -3923,16 +3923,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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", @@ -3940,16 +3940,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pt-BR", "CopyToOutputDirectory": "PreserveNewest", @@ -3957,16 +3957,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", @@ -3974,16 +3974,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", @@ -3991,16 +3991,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", @@ -4008,16 +4008,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", @@ -4025,16 +4025,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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", @@ -4042,16 +4042,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hans", "CopyToOutputDirectory": "PreserveNewest", @@ -4059,16 +4059,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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", @@ -4076,16 +4076,16 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hant", "CopyToOutputDirectory": "PreserveNewest", @@ -4096,4002 +4096,4002 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -8108,7 +8108,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 3e873f9d0257..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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -523,10 +523,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -591,10 +591,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -608,10 +608,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1917,10 +1917,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1985,10 +1985,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3515,10 +3515,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3535,3458 +3535,3458 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 a73b8f732cd8..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 @@ -225,14 +225,14 @@ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.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", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\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", 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 45cdedbe68bc..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2383,7 +2383,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2400,7 +2400,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2417,24 +2417,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2451,7 +2451,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2468,211 +2468,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3760,7 +3760,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3777,7 +3777,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3794,7 +3794,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", 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 7c0498d61394..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 @@ -222,14 +222,14 @@ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.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", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\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", 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 a70c00a73292..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2672,7 +2672,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 f19f1e85c998..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 @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -237,13 +237,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -254,30 +254,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,13 +305,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2481,7 +2481,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2498,7 +2498,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2532,24 +2532,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2566,7 +2566,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2583,211 +2583,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3892,7 +3892,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3909,7 +3909,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3926,7 +3926,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3943,7 +3943,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", 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 7c0498d61394..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 @@ -222,14 +222,14 @@ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.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", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\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", 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 c97cb503a642..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2672,7 +2672,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2689,7 +2689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 ef7b7ef905ed..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,206 +1,206 @@ [ - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "${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", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", 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 86c1da5b5d59..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -51,10 +51,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -68,10 +68,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -85,10 +85,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -102,10 +102,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -119,10 +119,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -136,10 +136,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -153,10 +153,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -170,10 +170,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -187,10 +187,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -204,10 +204,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -221,10 +221,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -238,10 +238,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -255,10 +255,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -272,10 +272,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -289,10 +289,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -306,10 +306,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -323,10 +323,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -340,10 +340,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -357,10 +357,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -374,10 +374,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -391,10 +391,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -408,10 +408,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -425,10 +425,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -442,10 +442,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -459,10 +459,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -476,10 +476,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -493,10 +493,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -510,10 +510,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -527,10 +527,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -544,10 +544,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -561,10 +561,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -578,10 +578,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -595,10 +595,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -612,10 +612,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -629,10 +629,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -646,10 +646,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -663,10 +663,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -680,10 +680,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -697,10 +697,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -714,10 +714,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -731,10 +731,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -748,10 +748,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -765,10 +765,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -782,10 +782,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -799,10 +799,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -816,10 +816,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -833,10 +833,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -850,10 +850,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -867,10 +867,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -884,10 +884,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -901,10 +901,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -918,10 +918,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -935,10 +935,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -952,10 +952,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -969,10 +969,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -986,10 +986,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1003,10 +1003,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1020,10 +1020,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1037,10 +1037,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1054,10 +1054,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1071,10 +1071,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1088,10 +1088,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1105,10 +1105,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1122,10 +1122,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1139,10 +1139,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1156,10 +1156,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1173,10 +1173,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1190,10 +1190,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1207,10 +1207,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1224,10 +1224,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1241,10 +1241,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1258,10 +1258,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1275,10 +1275,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1292,10 +1292,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1309,10 +1309,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1326,10 +1326,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1343,10 +1343,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1360,10 +1360,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1377,10 +1377,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1394,10 +1394,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1411,10 +1411,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1428,10 +1428,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1445,10 +1445,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1462,10 +1462,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1479,10 +1479,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1496,10 +1496,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1513,10 +1513,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1530,10 +1530,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1547,10 +1547,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1564,10 +1564,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1581,10 +1581,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1598,10 +1598,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1615,10 +1615,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1632,10 +1632,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1649,10 +1649,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1666,10 +1666,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1683,10 +1683,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1700,10 +1700,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1717,10 +1717,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1734,10 +1734,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1751,10 +1751,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1768,10 +1768,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1785,10 +1785,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1802,10 +1802,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1819,10 +1819,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1836,10 +1836,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1870,10 +1870,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1887,10 +1887,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1904,10 +1904,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1921,10 +1921,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1938,10 +1938,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1955,10 +1955,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1972,10 +1972,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1989,10 +1989,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2006,10 +2006,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2023,10 +2023,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2040,10 +2040,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2057,10 +2057,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2074,10 +2074,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2091,10 +2091,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2108,10 +2108,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2125,10 +2125,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2142,10 +2142,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2159,10 +2159,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2176,10 +2176,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2193,10 +2193,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2210,10 +2210,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2227,10 +2227,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2244,10 +2244,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2261,10 +2261,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2278,10 +2278,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2295,10 +2295,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2312,10 +2312,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2329,10 +2329,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2346,10 +2346,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2363,10 +2363,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2380,10 +2380,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2397,10 +2397,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2414,10 +2414,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2431,10 +2431,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2448,10 +2448,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2465,10 +2465,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2482,10 +2482,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2499,10 +2499,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2516,10 +2516,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2533,10 +2533,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2550,10 +2550,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2567,10 +2567,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2584,10 +2584,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2601,10 +2601,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2618,10 +2618,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2635,10 +2635,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2652,10 +2652,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2669,10 +2669,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3454,3418 +3454,3418 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", 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 f4105ac2d968..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 @@ -47,10 +47,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -64,10 +64,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -98,10 +98,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -132,10 +132,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -149,10 +149,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -166,10 +166,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -183,10 +183,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -200,10 +200,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -217,10 +217,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -234,10 +234,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -251,10 +251,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -268,10 +268,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -285,10 +285,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -302,10 +302,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -319,10 +319,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -336,10 +336,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -353,10 +353,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -370,10 +370,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -387,10 +387,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -404,10 +404,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -421,10 +421,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -438,10 +438,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -455,10 +455,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -472,10 +472,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -489,10 +489,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -506,10 +506,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\razorclasslibrary\\artifacts\\bin\\debug\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -557,10 +557,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -574,10 +574,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -591,10 +591,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -608,10 +608,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -625,10 +625,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -642,10 +642,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -659,10 +659,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -676,10 +676,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -693,10 +693,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -710,10 +710,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -727,10 +727,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -744,10 +744,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -761,10 +761,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -778,10 +778,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -795,10 +795,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -812,10 +812,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -829,10 +829,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -846,10 +846,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -863,10 +863,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -880,10 +880,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -897,10 +897,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -914,10 +914,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -931,10 +931,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -948,10 +948,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -965,10 +965,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -982,10 +982,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -999,10 +999,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1016,10 +1016,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1033,10 +1033,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1050,10 +1050,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1067,10 +1067,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1084,10 +1084,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1101,10 +1101,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1118,10 +1118,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1135,10 +1135,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1152,10 +1152,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1169,10 +1169,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1186,10 +1186,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1203,10 +1203,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1220,10 +1220,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1237,10 +1237,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1254,10 +1254,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1271,10 +1271,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1288,10 +1288,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1305,10 +1305,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1322,10 +1322,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1339,10 +1339,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1356,10 +1356,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1373,10 +1373,10 @@ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1390,10 +1390,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1407,10 +1407,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1424,10 +1424,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1441,10 +1441,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1458,10 +1458,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1475,10 +1475,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1492,10 +1492,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1509,10 +1509,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1526,10 +1526,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1543,10 +1543,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1560,10 +1560,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1577,10 +1577,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1594,10 +1594,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1611,10 +1611,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1628,10 +1628,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1645,10 +1645,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1662,10 +1662,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1679,10 +1679,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1696,10 +1696,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1713,10 +1713,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1730,10 +1730,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1747,10 +1747,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1764,10 +1764,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1781,10 +1781,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1798,10 +1798,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1815,10 +1815,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1832,10 +1832,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1849,10 +1849,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1866,10 +1866,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1883,10 +1883,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1900,10 +1900,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1934,10 +1934,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1951,10 +1951,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1968,10 +1968,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1985,10 +1985,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2002,10 +2002,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2019,10 +2019,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2036,10 +2036,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2053,10 +2053,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2070,10 +2070,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2087,10 +2087,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2104,10 +2104,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2121,10 +2121,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2138,10 +2138,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2155,10 +2155,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2172,10 +2172,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2189,10 +2189,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2206,10 +2206,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2223,10 +2223,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2240,10 +2240,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2257,10 +2257,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2274,10 +2274,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2291,10 +2291,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2308,10 +2308,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2325,10 +2325,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2342,10 +2342,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2359,10 +2359,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2376,10 +2376,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2393,10 +2393,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2410,10 +2410,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2427,10 +2427,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2444,10 +2444,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2461,10 +2461,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2478,10 +2478,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2495,10 +2495,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2512,10 +2512,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2529,10 +2529,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2546,10 +2546,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2563,10 +2563,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2580,10 +2580,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2597,10 +2597,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2614,10 +2614,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2631,10 +2631,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2648,10 +2648,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2665,10 +2665,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2682,10 +2682,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2699,10 +2699,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2716,10 +2716,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2733,10 +2733,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2750,10 +2750,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2767,10 +2767,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3518,3458 +3518,3458 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\System.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", 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 fddf7367fde0..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 @@ -225,14 +225,14 @@ "${OutputPath}\\wwwroot\\blazorwasm-minimal.styles.css", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.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", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\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", 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 3fe099d580fe..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 @@ -17,10 +17,10 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -34,10 +34,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -173,30 +173,30 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -207,13 +207,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -224,13 +224,13 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -241,7 +241,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -258,7 +258,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -275,7 +275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -292,7 +292,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -309,7 +309,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -326,7 +326,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -343,7 +343,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -360,7 +360,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -377,7 +377,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -394,7 +394,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -411,7 +411,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -428,7 +428,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -445,7 +445,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -462,7 +462,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -479,7 +479,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -496,7 +496,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -513,7 +513,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -530,7 +530,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -547,7 +547,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -564,7 +564,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -581,7 +581,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -598,7 +598,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -615,7 +615,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -632,7 +632,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -649,7 +649,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -666,7 +666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -683,7 +683,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -700,7 +700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -717,7 +717,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -734,7 +734,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -751,7 +751,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -768,7 +768,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -785,7 +785,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -802,7 +802,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -819,7 +819,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -836,7 +836,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -853,7 +853,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -870,7 +870,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -887,7 +887,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -904,7 +904,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -921,7 +921,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -938,7 +938,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -955,7 +955,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -972,7 +972,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -989,7 +989,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1006,7 +1006,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1023,7 +1023,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1040,7 +1040,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1057,7 +1057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1074,7 +1074,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1091,7 +1091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1108,7 +1108,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1125,7 +1125,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1142,7 +1142,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1159,7 +1159,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1176,7 +1176,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1193,7 +1193,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1210,7 +1210,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1227,7 +1227,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1244,7 +1244,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1261,7 +1261,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1278,7 +1278,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1295,7 +1295,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1312,7 +1312,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1329,7 +1329,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1346,7 +1346,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1363,7 +1363,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1380,7 +1380,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1397,7 +1397,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1414,7 +1414,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1431,7 +1431,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1448,7 +1448,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1465,7 +1465,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1482,7 +1482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1499,7 +1499,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1516,7 +1516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1533,7 +1533,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1550,7 +1550,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1567,7 +1567,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1584,7 +1584,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1601,7 +1601,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1618,7 +1618,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1635,7 +1635,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1652,7 +1652,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1669,7 +1669,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1686,7 +1686,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1703,7 +1703,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1720,7 +1720,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1737,7 +1737,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1754,7 +1754,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1771,7 +1771,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1788,7 +1788,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1805,7 +1805,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1822,7 +1822,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1839,7 +1839,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1856,7 +1856,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1873,7 +1873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1890,7 +1890,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -1907,7 +1907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -1924,7 +1924,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -1941,7 +1941,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -1958,7 +1958,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -1975,7 +1975,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -1992,7 +1992,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2009,7 +2009,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2026,7 +2026,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2043,7 +2043,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2060,7 +2060,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2077,7 +2077,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2094,7 +2094,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2111,7 +2111,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2128,7 +2128,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2145,7 +2145,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2162,7 +2162,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2179,7 +2179,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2196,7 +2196,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2213,7 +2213,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2230,7 +2230,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2247,7 +2247,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2264,7 +2264,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2281,7 +2281,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2298,7 +2298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2315,7 +2315,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2332,7 +2332,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2349,7 +2349,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2366,7 +2366,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2383,24 +2383,24 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", @@ -2417,7 +2417,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", @@ -2434,211 +2434,211 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_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": "${ProjectPath}\\artifacts\\bin\\debug\\${Tfm}\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2655,7 +2655,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2706,7 +2706,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2723,7 +2723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2740,7 +2740,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2757,7 +2757,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2774,7 +2774,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2791,7 +2791,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2808,7 +2808,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2825,7 +2825,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2842,7 +2842,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2859,7 +2859,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2876,7 +2876,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2893,7 +2893,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2910,7 +2910,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2927,7 +2927,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2944,7 +2944,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2961,7 +2961,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2978,7 +2978,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2995,7 +2995,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3012,7 +3012,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3029,7 +3029,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3046,7 +3046,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3063,7 +3063,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3080,7 +3080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3097,7 +3097,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3114,7 +3114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3131,7 +3131,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3148,7 +3148,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3165,7 +3165,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3182,7 +3182,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3199,7 +3199,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3216,7 +3216,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3233,7 +3233,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3250,7 +3250,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3267,7 +3267,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3284,7 +3284,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3301,7 +3301,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3318,7 +3318,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3335,7 +3335,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3352,7 +3352,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3369,7 +3369,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3386,7 +3386,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3403,7 +3403,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3420,7 +3420,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3437,7 +3437,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3454,7 +3454,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3471,7 +3471,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3488,7 +3488,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3505,7 +3505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3522,7 +3522,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3539,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3556,7 +3556,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3573,7 +3573,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3590,7 +3590,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3607,7 +3607,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3624,7 +3624,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3641,7 +3641,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3658,7 +3658,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3675,7 +3675,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3692,7 +3692,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3709,7 +3709,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3726,7 +3726,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3743,7 +3743,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3760,7 +3760,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3777,7 +3777,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 365241932b6d..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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -220,13 +220,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -237,30 +237,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -271,13 +271,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,7 +305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2481,24 +2481,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2532,211 +2532,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2753,7 +2753,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2770,7 +2770,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2787,7 +2787,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", 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 365241932b6d..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 @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -220,13 +220,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -237,30 +237,30 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -271,13 +271,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -288,13 +288,13 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", @@ -305,7 +305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", @@ -322,7 +322,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", @@ -339,7 +339,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", @@ -356,7 +356,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", @@ -373,7 +373,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", @@ -390,7 +390,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", @@ -407,7 +407,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", @@ -424,7 +424,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -441,7 +441,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", @@ -458,7 +458,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", @@ -475,7 +475,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", @@ -492,7 +492,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", @@ -509,7 +509,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", @@ -526,7 +526,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", @@ -543,7 +543,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", @@ -560,7 +560,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", @@ -577,7 +577,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", @@ -594,7 +594,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", @@ -611,7 +611,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", @@ -628,7 +628,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", @@ -645,7 +645,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", @@ -662,7 +662,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", @@ -679,7 +679,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", @@ -696,7 +696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", @@ -713,7 +713,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", @@ -730,7 +730,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", @@ -747,7 +747,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", @@ -764,7 +764,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", @@ -781,7 +781,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", @@ -798,7 +798,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", @@ -815,7 +815,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", @@ -832,7 +832,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", @@ -849,7 +849,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", @@ -866,7 +866,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", @@ -883,7 +883,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", @@ -900,7 +900,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", @@ -917,7 +917,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", @@ -934,7 +934,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", @@ -951,7 +951,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", @@ -968,7 +968,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", @@ -985,7 +985,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", @@ -1002,7 +1002,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", @@ -1019,7 +1019,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", @@ -1036,7 +1036,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", @@ -1053,7 +1053,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", @@ -1070,7 +1070,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", @@ -1087,7 +1087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", @@ -1104,7 +1104,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", @@ -1121,7 +1121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", @@ -1138,7 +1138,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", @@ -1155,7 +1155,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", @@ -1172,7 +1172,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", @@ -1189,7 +1189,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", @@ -1206,7 +1206,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", @@ -1223,7 +1223,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", @@ -1240,7 +1240,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", @@ -1257,7 +1257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", @@ -1274,7 +1274,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", @@ -1291,7 +1291,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", @@ -1308,7 +1308,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", @@ -1325,7 +1325,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", @@ -1342,7 +1342,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", @@ -1359,7 +1359,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", @@ -1376,7 +1376,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", @@ -1393,7 +1393,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", @@ -1410,7 +1410,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", @@ -1427,7 +1427,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", @@ -1444,7 +1444,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", @@ -1461,7 +1461,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", @@ -1478,7 +1478,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", @@ -1495,7 +1495,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", @@ -1512,7 +1512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", @@ -1529,7 +1529,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", @@ -1546,7 +1546,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", @@ -1563,7 +1563,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", @@ -1580,7 +1580,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", @@ -1597,7 +1597,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", @@ -1614,7 +1614,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", @@ -1631,7 +1631,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", @@ -1648,7 +1648,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", @@ -1665,7 +1665,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", @@ -1682,7 +1682,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", @@ -1699,7 +1699,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", @@ -1716,7 +1716,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", @@ -1733,7 +1733,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", @@ -1750,7 +1750,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", @@ -1767,7 +1767,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", @@ -1784,7 +1784,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", @@ -1801,7 +1801,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", @@ -1818,7 +1818,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", @@ -1835,7 +1835,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", @@ -1852,7 +1852,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", @@ -1869,7 +1869,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", @@ -1886,7 +1886,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", @@ -1903,7 +1903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", @@ -1920,7 +1920,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", @@ -1937,7 +1937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", @@ -1954,7 +1954,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", @@ -1971,7 +1971,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", @@ -1988,7 +1988,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", @@ -2005,7 +2005,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", @@ -2022,7 +2022,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", @@ -2039,7 +2039,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", @@ -2056,7 +2056,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", @@ -2073,7 +2073,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", @@ -2090,7 +2090,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", @@ -2107,7 +2107,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", @@ -2124,7 +2124,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", @@ -2141,7 +2141,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", @@ -2158,7 +2158,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", @@ -2175,7 +2175,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", @@ -2192,7 +2192,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", @@ -2209,7 +2209,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", @@ -2226,7 +2226,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", @@ -2243,7 +2243,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", @@ -2260,7 +2260,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", @@ -2277,7 +2277,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", @@ -2294,7 +2294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", @@ -2311,7 +2311,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", @@ -2328,7 +2328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", @@ -2345,7 +2345,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", @@ -2362,7 +2362,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", @@ -2379,7 +2379,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", @@ -2396,7 +2396,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", @@ -2413,7 +2413,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", @@ -2430,7 +2430,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", @@ -2447,7 +2447,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", @@ -2464,7 +2464,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", @@ -2481,24 +2481,24 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", @@ -2515,7 +2515,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", @@ -2532,211 +2532,211 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.js.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\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": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", @@ -2753,7 +2753,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", @@ -2770,7 +2770,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\bin\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2787,7 +2787,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2804,7 +2804,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2821,7 +2821,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2838,7 +2838,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2855,7 +2855,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2872,7 +2872,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2889,7 +2889,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2906,7 +2906,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2923,7 +2923,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2940,7 +2940,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2957,7 +2957,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2974,7 +2974,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2991,7 +2991,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3008,7 +3008,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3025,7 +3025,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3042,7 +3042,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3059,7 +3059,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3076,7 +3076,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3093,7 +3093,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3110,7 +3110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3127,7 +3127,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3144,7 +3144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3161,7 +3161,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3178,7 +3178,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3195,7 +3195,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3212,7 +3212,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3229,7 +3229,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3246,7 +3246,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3263,7 +3263,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3280,7 +3280,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3297,7 +3297,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3314,7 +3314,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3331,7 +3331,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3348,7 +3348,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3365,7 +3365,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3382,7 +3382,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3399,7 +3399,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3416,7 +3416,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3433,7 +3433,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3450,7 +3450,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3467,7 +3467,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3484,7 +3484,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3501,7 +3501,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3518,7 +3518,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3535,7 +3535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3552,7 +3552,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3569,7 +3569,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3586,7 +3586,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3603,7 +3603,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3620,7 +3620,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3637,7 +3637,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3654,7 +3654,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3671,7 +3671,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3688,7 +3688,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3705,7 +3705,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3722,7 +3722,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3739,7 +3739,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3756,7 +3756,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3773,7 +3773,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3790,7 +3790,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3807,7 +3807,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3824,7 +3824,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3841,7 +3841,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3858,7 +3858,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3875,7 +3875,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\artifacts\\publish\\debug\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", From 31e613d372f97d125367e90bbd4d915b1062288c Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Mon, 30 Jan 2023 21:22:18 -0500 Subject: [PATCH 17/27] Fix tests --- .../EndToEnd.Tests/GivenDotNetUsesMSBuild.cs | 2 +- ...WantRuntimeConfigInBuiltProjectOutputGroup.cs | 4 ++-- .../RootOutputPathTests.cs | 16 ++++++++-------- .../GivenThatWeWantToPackASimpleLibrary.cs | 2 +- ...nThatWeWantToPublishAFrameworkDependentApp.cs | 4 ++-- .../GivenThatWeWantToPublishIncrementally.cs | 13 +++++++------ .../RuntimeIdentifiersTests.cs | 5 +++-- 7 files changed, 24 insertions(+), 22 deletions(-) diff --git a/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs b/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs index 80e25af4aaa9..d4c71b1667de 100644 --- a/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs +++ b/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs @@ -43,7 +43,7 @@ public void ItCanNewRestoreBuildRunCleanMSBuildProject() .Should().Pass() .And.HaveStdOutContaining("Hello, World!"); - var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin").Sub("build"); + var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin"); binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories); new CleanCommand(Log, projectDirectory) diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs index b7b358fc1afa..1ca70610bf83 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs @@ -70,7 +70,7 @@ public void It_has_runtime_config_properties_after_partial_build() .Should() .Pass(); - var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, testProject.Name + ".runtimeconfig.json"); + var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release", runtimeIdentifier: testProject.RuntimeIdentifier).FullName, testProject.Name + ".runtimeconfig.json"); File.Exists(configFile).Should().BeTrue(); File.ReadAllText(configFile).Should().NotContain("\"System.Runtime.TieredCompilation\""); @@ -127,7 +127,7 @@ public void It_updates_runtime_config_properties_after_partial_build() .Should() .Pass(); - var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release").FullName, testProject.Name + ".runtimeconfig.json"); + var configFile = Path.Combine(buildCommand.GetOutputDirectory(configuration: "Release", runtimeIdentifier: testProject.RuntimeIdentifier).FullName, testProject.Name + ".runtimeconfig.json"); File.Exists(configFile).Should().BeTrue(); File.ReadAllText(configFile).Should().Contain("\"System.Runtime.TieredCompilation\": true"); diff --git a/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs b/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs index bd47b25a881e..68fcb67e1293 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/RootOutputPathTests.cs @@ -113,15 +113,15 @@ public void ItUsesRootOutputPathForPublish(bool setRootOutputInProject) .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject, "release"); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "release", testProject.Name + ".dll")) .Should() .Exist(); - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "publish", testProject.Name, "debug", testProject.Name + ".dll")) + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "publish", testProject.Name, "release", testProject.Name + ".dll")) .Should() .Exist(); } @@ -140,21 +140,21 @@ public void ItUsesRootOutputPathForPack(bool setRootOutputInProject) .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject, "release"); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "release", testProject.Name + ".dll")) .Should() .Exist(); - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "package", "debug", testProject.Name + ".1.0.0.nupkg")) + new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "package", "release", testProject.Name + ".1.0.0.nupkg")) .Should() .Exist(); } } - void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable testProjects, bool setRootOutputInProject) + void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable testProjects, bool setRootOutputInProject, string configuration = "debug") { foreach (var testProject in testProjects) { @@ -178,7 +178,7 @@ void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable tes .Should() .NotHaveSubDirectories(); - new DirectoryInfo(Path.Combine(testAsset.TestRoot, "artifacts", "obj", testProject.Name, "debug")) + new DirectoryInfo(Path.Combine(testAsset.TestRoot, "artifacts", "obj", testProject.Name, configuration)) .Should() .Exist(); }; diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs b/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs index 6b1c3b9147be..fc57621f4b00 100644 --- a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs +++ b/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs @@ -34,7 +34,7 @@ public void It_packs_successfully() packageDirectory.Should().OnlyHaveFiles(new[] { "HelloWorld.1.0.0.nupkg", - }); + }, SearchOption.TopDirectoryOnly); var outputDirectory = packCommand.GetOutputDirectory(); outputDirectory.Should().OnlyHaveFiles(new[] { diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs index 6b087595a204..ebc407b6132f 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs @@ -41,8 +41,8 @@ public void It_publishes_with_or_without_apphost(string useAppHost, string targe var testAsset = _testAssetsManager .CopyTestAsset(TestProjectName, $"It_publishes_with_or_without_apphost_{(useAppHost ?? "null")}_{targetFramework}") - .WithTargetFramework(targetFramework) - .WithSource(); + .WithSource() + .WithTargetFramework(targetFramework); var msbuildArgs = new List() { diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs index d5eacc7447b4..d97b7195c8c5 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs @@ -11,6 +11,7 @@ using Xunit; using Xunit.Abstractions; using System.Collections.Generic; +using System.Runtime.InteropServices; namespace Microsoft.NET.Publish.Tests { @@ -42,7 +43,7 @@ public void It_cleans_before_single_file_publish() .Should() .Pass(); - var publishDir = publishCommand.GetOutputDirectory().FullName; + var publishDir = publishCommand.GetOutputDirectory(runtimeIdentifier: "win-x86").FullName; var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } .Select(ending => testProject.Name + ending); var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); @@ -79,7 +80,7 @@ public void It_cleans_between_renames() .Should() .Pass(); - var publishDir = publishCommand.GetOutputDirectory().FullName; + var publishDir = publishCommand.GetOutputDirectory(runtimeIdentifier: "win-x86").FullName; var expectedSingleExeFileExtensions = new string[] { ".exe", ".pdb" }; CheckPublishOutput(publishDir, expectedSingleExeFileExtensions.Select(ending => testProject.Name + ending), null); @@ -120,7 +121,7 @@ public void It_cleans_between_single_file_publishes() .Should() .Pass(); - var publishDir = publishCommand.GetOutputDirectory().FullName; + var publishDir = publishCommand.GetOutputDirectory(runtimeIdentifier: "win-x86").FullName; var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); CheckPublishOutput(publishDir, expectedSingleExeFiles, null); @@ -157,7 +158,7 @@ public void It_cleans_before_trimmed_single_file_publish() .Should() .Pass(); - var publishDir = publishCommand.GetOutputDirectory().FullName; + var publishDir = publishCommand.GetOutputDirectory(runtimeIdentifier: "win-x86").FullName; var expectedNonSingleExeFiles = new string[] { ".dll", ".deps.json", ".runtimeconfig.json" } .Select(ending => testProject.Name + ending); var expectedSingleExeFiles = new string[] { ".exe", ".pdb" }.Select(ending => testProject.Name + ending); @@ -303,14 +304,14 @@ private void CheckPublishOutput(string publishDir, IEnumerable expectedF { foreach (var expectedFile in expectedFiles) { - File.Exists(Path.Combine(publishDir, expectedFile)).Should().BeTrue(); + new FileInfo(Path.Combine(publishDir, expectedFile)).Should().Exist(); } } if (unexpectedFiles != null) { foreach (var unexpectedFile in unexpectedFiles) { - File.Exists(Path.Combine(publishDir, unexpectedFile)).Should().BeFalse(); + new FileInfo(Path.Combine(publishDir, unexpectedFile)).Should().NotExist(); } } } diff --git a/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs b/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs index 62c3354ae97e..ff15f6958207 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs @@ -112,10 +112,11 @@ public void BuildWithUseCurrentRuntimeIdentifier() .Should() .Pass(); - testProject.GetPropertyValues(testAsset.TestRoot)["RuntimeIdentifier"].Should().NotBeNullOrWhiteSpace(); + var runtimeIdentifier = testProject.GetPropertyValues(testAsset.TestRoot)["RuntimeIdentifier"]; + runtimeIdentifier.Should().NotBeNullOrWhiteSpace(); var selfContainedExecutable = $"{testProject.Name}{Constants.ExeSuffix}"; - string selfContainedExecutableFullPath = Path.Combine(buildCommand.GetOutputDirectory().FullName, selfContainedExecutable); + string selfContainedExecutableFullPath = Path.Combine(buildCommand.GetOutputDirectory(runtimeIdentifier: runtimeIdentifier).FullName, selfContainedExecutable); new RunExeCommand(Log, selfContainedExecutableFullPath) .Execute() From f7de61dcd9885c028e228a6aa464bb8d0019ebc8 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 31 Jan 2023 13:44:32 -0500 Subject: [PATCH 18/27] Fix tests --- .../GivenThatWeWantToBuildACppCliProject.cs | 7 +++++-- .../WasmBuildIntegrationTest.cs | 3 ++- .../WasmPublishIntegrationTest.cs | 2 +- .../StaticWebAssetsIntegrationTest.cs | 4 ++-- .../OutputPathCalculator.cs | 12 ++++++++++-- 5 files changed, 20 insertions(+), 8 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs index 18497882644d..672d983df948 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs @@ -46,8 +46,11 @@ public void It_builds_and_runs() .Should() .Pass(); - var exe = Path.Combine( //find the platform directory - buildCommand.GetOutputDirectory().FullName, + var exe = Path.Combine( + //find the platform directory + new DirectoryInfo(Path.Combine(testAsset.TestRoot, "CSConsoleApp", "bin")).GetDirectories().Single().FullName, + "Debug", + ToolsetInfo.CurrentTargetFramework, "CSConsoleApp.exe"); var runCommand = new RunExeCommand(Log, exe); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs index da7df310e8a9..3cbc524106a7 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs @@ -8,6 +8,7 @@ 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 Xunit; @@ -93,7 +94,7 @@ public void Build_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "build", "debug", "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); } }); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index b9500c943d7e..9e59f62148f2 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -119,7 +119,7 @@ public void Publish_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "build", "debug", "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); } }); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs index a1b7aa0f972e..7b805efb7007 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs @@ -762,9 +762,9 @@ public void PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_ publish.WithWorkingDirectory(ProjectDirectory.Path); publish.Execute("/p:AppendTargetFrameworkToOutputPath=false", "/bl").Should().Pass(); - // Hard code intermediate output path here to account for AppendTargetFrameworkToOutputPath=false + // Hard code output paths here to account for AppendTargetFrameworkToOutputPath=false var intermediateOutputPath = Path.Combine(ProjectDirectory.Path, "AppWithPackageAndP2PReference", "obj", "Debug"); - var publishPath = publish.GetOutputDirectory("", "Debug").ToString(); + var publishPath = Path.Combine(ProjectDirectory.Path, "AppWithPackageAndP2PReference", "bin", "Debug", "publish"); // GenerateStaticWebAssetsManifest should generate the manifest file. var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 76b7dd81492e..3d5014622903 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -184,8 +184,16 @@ public string GetOutputDirectory(string targetFramework = null, string configura configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? string.Empty; - string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration, targetFramework, runtimeIdentifier); - return output; + if (IsSdkProject) + { + string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration, targetFramework, runtimeIdentifier); + return output; + } + else + { + string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration); + return output; + } } } From 29d36855802e627b0c455f6e7edf790fa0c7aadc Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 31 Jan 2023 15:55:17 -0500 Subject: [PATCH 19/27] Fix path casing in test --- .../WasmBuildIntegrationTest.cs | 2 +- .../WasmPublishIntegrationTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs index 3cbc524106a7..723d646076ff 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs @@ -94,7 +94,7 @@ public void Build_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); } }); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index 9e59f62148f2..61034b067f11 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -119,7 +119,7 @@ public void Publish_Works_WithLibraryUsingHintPath() reference.Name = "Reference"; reference.Add(new XElement( "HintPath", - Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); + Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll"))); } }); From c4e3545d9753ae7f3e7ff370e272ed157a59a465 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 24 Feb 2023 17:00:21 -0500 Subject: [PATCH 20/27] Update to latest version of output path design proposal --- .../Microsoft.NET.Build.Tasks/sdk/Sdk.props | 40 +++--- .../Microsoft.NET.DefaultOutputPaths.targets | 132 ++++++++++-------- ...oft.NET.RuntimeIdentifierInference.targets | 4 +- .../Microsoft.NET.Sdk.BeforeCommon.targets | 4 +- ...thTests.cs => ArtifactsOutputPathTests.cs} | 26 ++-- 5 files changed, 113 insertions(+), 93 deletions(-) rename src/Tests/Microsoft.NET.Build.Tests/{RootOutputPathTests.cs => ArtifactsOutputPathTests.cs} (85%) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props index feb4ae7c7f26..16c354f9e022 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props +++ b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props @@ -34,7 +34,7 @@ Copyright (c) .NET Foundation. All rights reserved. - - - true - $(RootOutputPath) + + + true - - - true - - bin\ - $([MSBuild]::EnsureTrailingSlash($(BaseStandardOutputPath))) + + + + $(_DirectoryBuildPropsBasePath)\.artifacts + true + - $(BaseStandardOutputPath)build\ - $(BaseStandardOutputPath)obj\ + + + $(MSBuildProjectDirectory)\.artifacts + - - $(BaseOutputPath)$(MSBuildProjectName)\ - $(BaseIntermediateOutputPath)$(MSBuildProjectName)\ + + true + $(MSBuildProjectName) + + + + $(ArtifactsPath)\obj\$(ArtifactsProjectName)\ + $(ArtifactsPath)\obj\ diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index b3f87a046c87..961f19125d55 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -25,36 +25,85 @@ Copyright (c) .NET Foundation. All rights reserved. true - - - - true - $(RootOutputPath) + + + true - - - bin\ - $([MSBuild]::EnsureTrailingSlash($(BaseStandardOutputPath))) + + + + $(_DirectoryBuildPropsBasePath)\.artifacts + true + + + + + $(MSBuildProjectDirectory)\.artifacts + + + + $(MSBuildProjectName) + + bin + publish + package + + + $(Configuration.ToLowerInvariant()) + + + $(ArtifactsPivots)_$(TargetFramework.ToLowerInvariant()) + + + $(ArtifactsPivots)_$(RuntimeIdentifier.ToLowerInvariant()) + + - - $(BaseOutputPath)$(MSBuildProjectName)\ + + + $(ArtifactsPath)\$(ArtifactsBinOutputName)\$(ArtifactsProjectName)\ + $(ArtifactsPath)\obj\$(ArtifactsProjectName)\ + $(ArtifactsPath)\$(ArtifactsPublishOutputName)\$(ArtifactsProjectName)\$(ArtifactsPivots)\ - + + + $(ArtifactsPath)\$(ArtifactsBinOutputName)\ + $(ArtifactsPath)\obj\ + $(ArtifactsPath)\$(ArtifactsPublishOutputName)\$(ArtifactsPivots)\ + + + + $(BaseOutputPath)$(ArtifactsPivots)\ + $(BaseIntermediateOutputPath)$(ArtifactsPivots)\ + + + $(ArtifactsPath)\$(ArtifactsPackageOutputName)\$(Configuration.ToLowerInvariant())\ + + + + bin\ $(BaseOutputPath)\ $(BaseOutputPath)$(Configuration)\ @@ -62,9 +111,9 @@ Copyright (c) .NET Foundation. All rights reserved. $(OutputPath)\ - - + + obj\ $(BaseIntermediateOutputPath)\ $(BaseIntermediateOutputPath)$(Configuration)\ @@ -74,67 +123,32 @@ Copyright (c) .NET Foundation. All rights reserved. - $(OutputPath) - $(BaseStandardOutputPath)\package\$(Configuration.ToLowerInvariant())\ + $(OutputPath) - + $(DefaultItemExcludes);$(OutputPath)/** $(DefaultItemExcludes);$(IntermediateOutputPath)/** - - $(DefaultItemExcludes);$(BaseStandardOutputPath)/** + + $(DefaultItemExcludes);$(ArtifactsPath)/** - $(OutputPath)$(TargetFramework.ToLowerInvariant())\ - $(IntermediateOutputPath)$(TargetFramework.ToLowerInvariant())\ - - - <_ArtifactPivots>$(Configuration.ToLowerInvariant()) - - - <_ArtifactPivots Condition="'$(TargetFrameworks)' != ''" - >$(_ArtifactPivots)_$(TargetFramework.ToLowerInvariant()) - - - - <_ArtifactPivots Condition="'$(RuntimeIdentifier)' != '' And !('$(RuntimeIdentifier)' == 'browser-wasm' And '$(AppendRuntimeIdentifierToOutputPath)' == 'false')" - >$(_ArtifactPivots)_$(RuntimeIdentifier.ToLowerInvariant()) - - $(BaseOutputPath)$(_ArtifactPivots)\ - - - publish - - $(BaseStandardOutputPath)$(PublishDirName)\$(_ArtifactPivots)\ - $(BaseStandardOutputPath)$(PublishDirName)\$(MSBuildProjectName)\$(_ArtifactPivots)\ - - - - - $(BaseIntermediateOutputPath)$(_ArtifactPivots)\ - diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets index e333fc879839..07d07e979990 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets @@ -302,8 +302,8 @@ Copyright (c) .NET Foundation. All rights reserved. append a RID the user never mentioned in the path and do so even in the AnyCPU case. --> - $(IntermediateOutputPath)$(RuntimeIdentifier)\ - $(OutputPath)$(RuntimeIdentifier)\ + $(IntermediateOutputPath)$(RuntimeIdentifier)\ + $(OutputPath)$(RuntimeIdentifier)\ - + If using artifacts output path format, PublishDir is already set in Microsoft.NET.DefaultOutputPaths.targets --> + publish testProjects, TestAsset testAsset) GetTestProjects(bool setUseArtifactsOutputInProject, [CallerMemberName] string callingMethod = "") { var testProject1 = new TestProject() { @@ -52,23 +52,23 @@ public RootOutputPathTests(ITestOutputHelper log) : base(log) List testProjects = new() { testProject1, testProject2, testLibraryProject }; - if (setRootOutputInProject) + if (setUseArtifactsOutputInProject) { foreach (var testProject in testProjects) { - testProject.AdditionalProperties["RootOutputPath"] = "..\\artifacts"; + testProject.AdditionalProperties["UseArtifactsOutput"] = "true"; } } - var testAsset = _testAssetsManager.CreateTestProjects(testProjects, callingMethod: callingMethod, identifier: setRootOutputInProject.ToString()); + var testAsset = _testAssetsManager.CreateTestProjects(testProjects, callingMethod: callingMethod, identifier: setUseArtifactsOutputInProject.ToString()); - if (!setRootOutputInProject) + if (!setUseArtifactsOutputInProject) { File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), """ - $(MSBuildThisFileDirectory)\artifacts + true """); @@ -80,9 +80,9 @@ public RootOutputPathTests(ITestOutputHelper log) : base(log) [Theory] [InlineData(true)] [InlineData(false)] - public void ItUsesRootOutputPathForBuild(bool setRootOutputInProject) + public void ItUsesRootOutputPathForBuild(bool setUseArtifactsOutputInProject) { - var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + var (testProjects, testAsset) = GetTestProjects(setUseArtifactsOutputInProject); new DotnetCommand(Log, "build") .WithWorkingDirectory(testAsset.Path) @@ -90,11 +90,11 @@ public void ItUsesRootOutputPathForBuild(bool setRootOutputInProject) .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject); + ValidateIntermediatePaths(testAsset, testProjects, setUseArtifactsOutputInProject); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "debug", testProject.Name + ".dll")) + new FileInfo(Path.Combine(testAsset.TestRoot, ".artifacts", "bin", testProject.Name, "debug", testProject.Name + ".dll")) .Should() .Exist(); } @@ -178,7 +178,7 @@ void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable tes .Should() .NotHaveSubDirectories(); - new DirectoryInfo(Path.Combine(testAsset.TestRoot, "artifacts", "obj", testProject.Name, configuration)) + new DirectoryInfo(Path.Combine(testAsset.TestRoot, ".artifacts", "obj", testProject.Name, configuration)) .Should() .Exist(); }; From aac09ccd4c3dd72a6a02d8c240c1f419f1560ac3 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Mon, 27 Feb 2023 19:24:20 -0500 Subject: [PATCH 21/27] Update Artifacts output tests --- .../ShellShimRepositoryTests.cs | 2 +- .../ArtifactsOutputPathTests.cs | 82 ++++-- .../GivenThatWeWantToBuildANetCoreApp.cs | 6 - .../PublishWpfApp.cs | 2 +- .../WasmPwaManifestTests.cs | 2 +- .../Commands/GetValuesCommand.cs | 2 +- .../Commands/MSBuildCommand.cs | 6 +- .../Commands/PublishCommand.cs | 2 +- .../OutputPathCalculator.cs | 256 ++++++++++-------- .../ProjectConstruction/TestProject.cs | 11 +- .../GivenDotnetBuildBuildsCsproj.cs | 4 +- .../GivenDotnetCleanCleansBuildArtifacts.cs | 2 +- .../GivenDotnetPublishPublishesProjects.cs | 8 +- .../dotnet-sln.Tests/GivenDotnetSlnAdd.cs | 4 +- .../dotnet-sln.Tests/GivenDotnetSlnRemove.cs | 2 +- ...tfromCsprojWithCorrectTestRunParameters.cs | 2 +- src/Tests/dotnet-vstest.Tests/VSTestTests.cs | 2 +- 17 files changed, 223 insertions(+), 172 deletions(-) diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs b/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs index db27ca26aa39..89f924866793 100644 --- a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs +++ b/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs @@ -495,7 +495,7 @@ private FilePath MakeHelloWorldExecutableDll([CallerMemberName] string callingMe var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputDirectory = new DirectoryInfo(OutputPathCalculator.FromTestAsset(testInstance.Path, testInstance).GetOutputDirectory(configuration: configuration)); + var outputDirectory = new DirectoryInfo(OutputPathCalculator.FromProject(testInstance.Path, testInstance).GetOutputDirectory(configuration: configuration)); return new FilePath(Path.Combine(outputDirectory.FullName, $"{testAppName}.dll")); } diff --git a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs index 98119a77d72e..18f78505a3a1 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs @@ -19,16 +19,17 @@ using Xunit.Abstractions; using Xunit.Sdk; - namespace Microsoft.NET.Build.Tests { + using ArtifactsTestExtensions; + public class ArtifactsOutputPathTests : SdkTest { public ArtifactsOutputPathTests(ITestOutputHelper log) : base(log) { } - (List testProjects, TestAsset testAsset) GetTestProjects(bool setUseArtifactsOutputInProject, [CallerMemberName] string callingMethod = "") + (List testProjects, TestAsset testAsset) GetTestProjects(bool useDirectoryBuildProps, [CallerMemberName] string callingMethod = "") { var testProject1 = new TestProject() { @@ -52,17 +53,15 @@ public ArtifactsOutputPathTests(ITestOutputHelper log) : base(log) List testProjects = new() { testProject1, testProject2, testLibraryProject }; - if (setUseArtifactsOutputInProject) + foreach (var testProject in testProjects) { - foreach (var testProject in testProjects) - { - testProject.AdditionalProperties["UseArtifactsOutput"] = "true"; - } + testProject.UseArtifactsOutput = true; + testProject.UseDirectoryBuildPropsForArtifactsOutput = useDirectoryBuildProps; } - var testAsset = _testAssetsManager.CreateTestProjects(testProjects, callingMethod: callingMethod, identifier: setUseArtifactsOutputInProject.ToString()); + var testAsset = _testAssetsManager.CreateTestProjects(testProjects, callingMethod: callingMethod, identifier: useDirectoryBuildProps.ToString()); - if (!setUseArtifactsOutputInProject) + if (useDirectoryBuildProps) { File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), """ @@ -80,21 +79,23 @@ public ArtifactsOutputPathTests(ITestOutputHelper log) : base(log) [Theory] [InlineData(true)] [InlineData(false)] - public void ItUsesRootOutputPathForBuild(bool setUseArtifactsOutputInProject) + public void ItUsesArtifactsOutputPathForBuild(bool useDirectoryBuildProps) { - var (testProjects, testAsset) = GetTestProjects(setUseArtifactsOutputInProject); + var (testProjects, testAsset) = GetTestProjects(useDirectoryBuildProps); new DotnetCommand(Log, "build") .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) .Execute() .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setUseArtifactsOutputInProject); + ValidateIntermediatePaths(testAsset, testProjects, useDirectoryBuildProps); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, ".artifacts", "bin", testProject.Name, "debug", testProject.Name + ".dll")) + OutputPathCalculator outputPathCalculator = OutputPathCalculator.FromProject(Path.Combine(testAsset.Path, testProject.Name), testProject); + new FileInfo(Path.Combine(outputPathCalculator.GetOutputDirectory(), testProject.Name + ".dll")) .Should() .Exist(); } @@ -103,25 +104,26 @@ public void ItUsesRootOutputPathForBuild(bool setUseArtifactsOutputInProject) [Theory] [InlineData(true)] [InlineData(false)] - public void ItUsesRootOutputPathForPublish(bool setRootOutputInProject) + public void ItUsesArtifactsOutputPathForPublish(bool useDirectoryBuildProps) { - var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + var (testProjects, testAsset) = GetTestProjects(useDirectoryBuildProps); new DotnetCommand(Log, "publish") .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) .Execute() .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject, "release"); + ValidateIntermediatePaths(testAsset, testProjects, useDirectoryBuildProps, "release"); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "release", testProject.Name + ".dll")) + OutputPathCalculator outputPathCalculator = OutputPathCalculator.FromProject(Path.Combine(testAsset.Path, testProject.Name), testProject); + new FileInfo(Path.Combine(outputPathCalculator.GetOutputDirectory(configuration: "release"), testProject.Name + ".dll")) .Should() .Exist(); - - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "publish", testProject.Name, "release", testProject.Name + ".dll")) + new FileInfo(Path.Combine(outputPathCalculator.GetPublishDirectory(configuration: "release"), testProject.Name + ".dll")) .Should() .Exist(); } @@ -130,35 +132,36 @@ public void ItUsesRootOutputPathForPublish(bool setRootOutputInProject) [Theory] [InlineData(true)] [InlineData(false)] - public void ItUsesRootOutputPathForPack(bool setRootOutputInProject) + public void ItUsesRootOutputPathForPack(bool useDirectoryBuildProps) { - var (testProjects, testAsset) = GetTestProjects(setRootOutputInProject); + var (testProjects, testAsset) = GetTestProjects(useDirectoryBuildProps); new DotnetCommand(Log, "pack") .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) .Execute() .Should() .Pass(); - ValidateIntermediatePaths(testAsset, testProjects, setRootOutputInProject, "release"); + ValidateIntermediatePaths(testAsset, testProjects, useDirectoryBuildProps, "release"); foreach (var testProject in testProjects) { - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "build", testProject.Name, "release", testProject.Name + ".dll")) + OutputPathCalculator outputPathCalculator = OutputPathCalculator.FromProject(Path.Combine(testAsset.Path, testProject.Name), testProject); + new FileInfo(Path.Combine(outputPathCalculator.GetOutputDirectory(configuration: "release"), testProject.Name + ".dll")) .Should() .Exist(); - - new FileInfo(Path.Combine(testAsset.TestRoot, "artifacts", "package", "release", testProject.Name + ".1.0.0.nupkg")) + new FileInfo(Path.Combine(outputPathCalculator.GetPackageDirectory(configuration: "release"), testProject.Name + ".1.0.0.nupkg")) .Should() .Exist(); } } - void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable testProjects, bool setRootOutputInProject, string configuration = "debug") + void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable testProjects, bool useDirectoryBuildProps, string configuration = "debug") { foreach (var testProject in testProjects) { - if (setRootOutputInProject) + if (!useDirectoryBuildProps) { new DirectoryInfo(Path.Combine(testAsset.TestRoot, testProject.Name)) .Should() @@ -184,5 +187,30 @@ void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable tes }; } } + + + + } + + namespace ArtifactsTestExtensions + { + static class Extensions + { + public static TestCommand SetEnvironmentVariables(this TestCommand command, bool useDirectoryBuildProps) + { + // There is an empty Directory.Build.props file in the test execution root, to stop other files further up in the repo from + // impacting the tests. So if a project set UseArtifactsOutput to true, the logic would find that file and put the output + // in that folder. To simulate the situation where there is no Directory.Build.props, we turn it off via an environment + // variable. + if (!useDirectoryBuildProps) + { + return command.WithEnvironmentVariable("ImportDirectoryBuildProps", "false"); + } + else + { + return command; + } + } + } } } diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs index c1e13f6a130c..8373eeead779 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs @@ -607,12 +607,6 @@ public void It_publishes_package_satellites_correctly(bool crossTarget) .NotHaveStdOutMatching("Encountered conflict", System.Text.RegularExpressions.RegexOptions.CultureInvariant | System.Text.RegularExpressions.RegexOptions.IgnoreCase) ; - if (crossTarget) - { - // Let the GetOutputDirectory logic know that this project doesn't use the artifacts output format - testProject.UseStandardOutputPaths = false; - } - var outputDirectory = publishCommand.GetOutputDirectory(testProject.TargetFrameworks); outputDirectory.Should().NotHaveFile("Humanizer.resources.dll"); outputDirectory.Should().HaveFile(Path.Combine("fr", "Humanizer.resources.dll")); diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs index d2c9a9ed6c8b..7a8ae9f476b2 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs @@ -57,7 +57,7 @@ public void It_publishes_and_runs_self_contained_wpf_app() .Should() .Pass(); - var publishDirectory = OutputPathCalculator.FromTestAsset(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).GetPublishDirectory( + var publishDirectory = OutputPathCalculator.FromProject(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).GetPublishDirectory( targetFramework: targetFramework, runtimeIdentifier: rid); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs index 871ac7e22358..19e17a772edd 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs @@ -71,7 +71,7 @@ public void Build_HostedAppWithServiceWorker_Works() buildCommand.Execute() .Should().Pass(); - var buildOutputDirectory = OutputPathCalculator.FromTestAsset(Path.Combine(testInstance.TestRoot, "blazorwasm")).GetOutputDirectory(); + var buildOutputDirectory = OutputPathCalculator.FromProject(Path.Combine(testInstance.TestRoot, "blazorwasm")).GetOutputDirectory(); var serviceWorkerAssetsManifest = Path.Combine(buildOutputDirectory, "wwwroot", "custom-service-worker-assets.js"); // Trim prefix 'self.assetsManifest = ' and suffix ';' diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs index 0ef8c8e89ed3..158efe1a7e81 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs @@ -53,7 +53,7 @@ public GetValuesCommand(TestAsset testAsset, string targetFramework = null) : base(testAsset, "WriteValuesToFile", relativePathToProject: null) { - _targetFramework = targetFramework ?? OutputPathCalculator.FromTestAsset(ProjectFile, testAsset).TryGetTargetFramework(); + _targetFramework = targetFramework ?? OutputPathCalculator.FromProject(ProjectFile, testAsset).TargetFramework; _valueName = valueName; _valueType = valueType; diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs index d32b316fb0b8..c7ecd8ddef4e 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs @@ -79,7 +79,7 @@ public virtual DirectoryInfo GetOutputDirectory(string targetFramework = "", str { if (TestAsset != null) { - return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetOutputDirectory(targetFramework, configuration, runtimeIdentifier)); + return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetOutputDirectory(targetFramework, configuration, runtimeIdentifier)); } targetFramework = targetFramework ?? string.Empty; @@ -94,7 +94,7 @@ public virtual DirectoryInfo GetIntermediateDirectory(string targetFramework = " { if (TestAsset != null) { - return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetIntermediateDirectory(targetFramework, configuration, runtimeIdentifier)); + return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetIntermediateDirectory(targetFramework, configuration, runtimeIdentifier)); } targetFramework = targetFramework ?? string.Empty; @@ -109,7 +109,7 @@ public DirectoryInfo GetPackageDirectory(string configuration = "Debug") { if (TestAsset != null) { - return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetPackageDirectory(configuration)); + return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetPackageDirectory(configuration)); } string output = Path.Combine(ProjectRootPath, "bin", configuration); diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs index a026e638128c..5832ef787498 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs @@ -28,7 +28,7 @@ public override DirectoryInfo GetOutputDirectory(string targetFramework = "", st { if (TestAsset != null) { - return new DirectoryInfo(OutputPathCalculator.FromTestAsset(ProjectFile, TestAsset).GetPublishDirectory(targetFramework, configuration, runtimeIdentifier)); + return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetPublishDirectory(targetFramework, configuration, runtimeIdentifier)); } if (string.IsNullOrEmpty(targetFramework)) diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 3d5014622903..d4a2e13615d7 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -12,27 +12,30 @@ using System.Xml.Linq; using NuGet.Frameworks; using Xunit.Sdk; +using System.ComponentModel.DataAnnotations; namespace Microsoft.NET.TestFramework { public class OutputPathCalculator { public string ProjectPath { get; set; } + public bool UseArtifactsOutput { get; set; } + public bool IncludeProjectNameInArtifactsPaths { get; set; } + public string ArtifactsPath { get; set; } public string TargetFramework { get; set; } + public string TargetFrameworks { get; set; } + public string RuntimeIdentifier { get; set; } - public bool? UseStandardOutputPaths { get; set; } - public bool IsSdkProject { get; set; } = true; - - public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset testAsset = null) + public static OutputPathCalculator FromProject(string projectPath, TestAsset testAsset) { - if (testAsset?.TestProject != null) - { - return FromTestProject(projectPath, testAsset.TestProject); - } + return FromProject(projectPath, testAsset?.TestProject); + } + public static OutputPathCalculator FromProject(string projectPath, TestProject testProject = null) + { if (!File.Exists(projectPath) && Directory.Exists(projectPath)) { projectPath = Directory.GetFiles(projectPath, "*.*proj").FirstOrDefault(); @@ -43,126 +46,122 @@ public static OutputPathCalculator FromTestAsset(string projectPath, TestAsset t ProjectPath = projectPath, }; - return calculator; - } - - public static OutputPathCalculator FromTestProject(string projectPath, TestProject testProject) - { - var calculator = new OutputPathCalculator() + if (testProject != null) { - ProjectPath = projectPath, - TargetFramework = testProject.TargetFrameworks, - RuntimeIdentifier = testProject.RuntimeIdentifier, - UseStandardOutputPaths = testProject.UseStandardOutputPaths, - IsSdkProject = testProject.IsSdkProject - }; + calculator.UseArtifactsOutput = testProject.UseArtifactsOutput; + calculator.IsSdkProject = testProject.IsSdkProject; + calculator.IncludeProjectNameInArtifactsPaths = testProject.UseDirectoryBuildPropsForArtifactsOutput; - return calculator; - } + if (testProject.TargetFrameworks.Contains(';')) + { + calculator.TargetFrameworks = testProject.TargetFrameworks; + } + else + { + calculator.TargetFramework = testProject.TargetFrameworks; + } - public string TryGetTargetFramework() - { - string targetFramework = TargetFramework; + calculator.RuntimeIdentifier = testProject.RuntimeIdentifier; - if (string.IsNullOrEmpty(targetFramework)) + if (calculator.IncludeProjectNameInArtifactsPaths) + { + string directoryBuildPropsFile = GetDirectoryBuildPropsPath(projectPath); + if (directoryBuildPropsFile == null) + { + throw new InvalidOperationException("Couldn't find Directory.Build.props for test project " + projectPath); + } + calculator.ArtifactsPath = Path.Combine(Path.GetDirectoryName(directoryBuildPropsFile), ".artifacts"); + } + else + { + calculator.ArtifactsPath = Path.Combine(Path.GetDirectoryName(projectPath), ".artifacts"); + } + } + else { - var project = XDocument.Load(ProjectPath); - + var project = XDocument.Load(projectPath); var ns = project.Root.Name.Namespace; - var propertyGroup = project.Root.Elements(ns + "PropertyGroup").First(); - var targetFrameworksElement = propertyGroup.Element(ns + "TargetFrameworks"); - if (targetFrameworksElement != null) + var useArtifactsOutputElement = project.Root.Elements(ns + "PropertyGroup").Elements("UseArtifactsOutput").FirstOrDefault(); + if (useArtifactsOutputElement != null) { - string targetFrameworks = targetFrameworksElement.Value; - if (!targetFrameworks.Contains(';')) + calculator.UseArtifactsOutput = bool.Parse(useArtifactsOutputElement.Value); + if (calculator.UseArtifactsOutput) { - targetFramework = targetFrameworks; + calculator.IncludeProjectNameInArtifactsPaths = false; + calculator.ArtifactsPath = Path.Combine(Path.GetDirectoryName(projectPath), ".artifacts"); } } - else + + var targetFrameworkElement = project.Root.Elements(ns + "PropertyGroup").Elements("TargetFramework").FirstOrDefault(); + if (targetFrameworkElement != null) { - var targetFrameworkElement = propertyGroup.Element(ns + "TargetFramework"); - targetFramework = targetFrameworkElement?.Value; + calculator.TargetFramework = targetFrameworkElement.Value; } - } - return targetFramework ?? ""; - } - public bool IsMultiTargeted() - { - if (!string.IsNullOrEmpty(TargetFramework) && TargetFramework.Contains(';')) - { - return true; - } - var project = XDocument.Load(ProjectPath); + var targetFrameworksElement = project.Root.Elements(ns + "PropertyGroup").Elements("TargetFrameworks").FirstOrDefault(); + if (targetFrameworksElement != null) + { + calculator.TargetFrameworks = targetFrameworksElement.Value; + } - var ns = project.Root.Name.Namespace; + var runtimeIdentifierElement = project.Root.Elements(ns + "PropertyGroup").Elements(ns + "RuntimeIdentifier").FirstOrDefault(); + if (runtimeIdentifierElement != null) + { + calculator.RuntimeIdentifier = runtimeIdentifierElement.Value; + } - var propertyGroup = project.Root.Elements(ns + "PropertyGroup").First(); - var targetFrameworksElement = propertyGroup.Element(ns + "TargetFrameworks"); - if (targetFrameworksElement != null) - { - string targetFrameworks = targetFrameworksElement.Value; - return !string.IsNullOrEmpty(targetFrameworks); - } + var directoryBuildPropsFile = GetDirectoryBuildPropsPath(projectPath); + if (directoryBuildPropsFile != null) + { + var dbp = XDocument.Load(directoryBuildPropsFile); + var dbpns = dbp.Root.Name.Namespace; - return false; + var dbpUsesArtifacts = dbp.Root.Elements(ns + "PropertyGroup").Elements("UseArtifactsOutput").FirstOrDefault(); + if (dbpUsesArtifacts != null) + { + + calculator.UseArtifactsOutput = bool.Parse(dbpUsesArtifacts.Value); + if (calculator.UseArtifactsOutput) + { + calculator.IncludeProjectNameInArtifactsPaths = true; + calculator.ArtifactsPath = Path.Combine(Path.GetDirectoryName(directoryBuildPropsFile), ".artifacts"); + } + } + } + } + return calculator; } - private bool UsesStandardOutputPaths() + private static string GetDirectoryBuildPropsPath(string projectPath) { - if (UseStandardOutputPaths.HasValue) + string folder = Path.GetDirectoryName(projectPath); + while (folder != null) { - return UseStandardOutputPaths.Value; + string directoryBuildPropsFile = Path.Combine(folder, "Directory.Build.props"); + if (File.Exists(directoryBuildPropsFile)) + { + return directoryBuildPropsFile; + } + folder = Path.GetDirectoryName(folder); } + return null; + } - - - // If we end up enabling standard output paths when targeting a certain version of .NET or higher, the logic for the rest of this method would look something like this:s - //if (!IsSdkProject) - //{ - // return false; - //} - - //string targetFramework = TryGetTargetFramework(); - - //if (targetFramework == null) - //{ - // return false; - //} - - //if (IsMultiTargeted()) - //{ - // return false; - //} - - //var framework = NuGetFramework.Parse(targetFramework); - //if (framework.Framework != ".NETCoreApp") - //{ - // return false; - //} - //if (framework.Version.Major >= 8) - //{ - // return true; - //} - //else - //{ - // return false; - //} - - return false; + public bool IsMultiTargeted() + { + return !string.IsNullOrEmpty(TargetFrameworks); } public string GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { - if (UsesStandardOutputPaths()) + if (UseArtifactsOutput) { string pivot = configuration.ToLowerInvariant(); - if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) + if (IsMultiTargeted()) { - pivot += "_" + targetFramework; + pivot += "_" + targetFramework ?? TargetFramework; } if (string.IsNullOrEmpty(runtimeIdentifier)) { @@ -172,17 +171,21 @@ public string GetOutputDirectory(string targetFramework = null, string configura { pivot += "_" + runtimeIdentifier; } - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "build", pivot); + + if (IncludeProjectNameInArtifactsPaths) + { + return Path.Combine(ArtifactsPath, "bin", Path.GetFileNameWithoutExtension(ProjectPath), pivot); + } + else + { + return Path.Combine(ArtifactsPath, "bin", pivot); + } } else { - if (string.IsNullOrEmpty(targetFramework)) - { - targetFramework = TryGetTargetFramework(); - } - + targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; - runtimeIdentifier = runtimeIdentifier ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier; if (IsSdkProject) { @@ -199,12 +202,12 @@ public string GetOutputDirectory(string targetFramework = null, string configura public string GetPublishDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { - if (UsesStandardOutputPaths()) + if (UseArtifactsOutput) { string pivot = configuration.ToLowerInvariant(); - if (IsMultiTargeted() && !string.IsNullOrEmpty(targetFramework)) + if (IsMultiTargeted()) { - pivot += "_" + targetFramework; + pivot += "_" + targetFramework ?? TargetFramework; } if (string.IsNullOrEmpty(runtimeIdentifier)) { @@ -214,15 +217,19 @@ public string GetPublishDirectory(string targetFramework = null, string configur { pivot += "_" + runtimeIdentifier; } - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "publish", pivot); + + if (IncludeProjectNameInArtifactsPaths) + { + return Path.Combine(ArtifactsPath, "publish", Path.GetFileNameWithoutExtension(ProjectPath), pivot); + } + else + { + return Path.Combine(ArtifactsPath, "publish", pivot); + } } else { - if (string.IsNullOrEmpty(targetFramework)) - { - targetFramework = TryGetTargetFramework(); - } - + targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? string.Empty; @@ -233,11 +240,26 @@ public string GetPublishDirectory(string targetFramework = null, string configur public string GetIntermediateDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { - if (string.IsNullOrEmpty(targetFramework)) + // IncludeProjectNameInArtifactsPath is likely to be true if UseArtifactsOutput was set in Directory.Build.props, and hence the intermediate folder should be in the artifacts path + if (UseArtifactsOutput && IncludeProjectNameInArtifactsPaths) { - targetFramework = TryGetTargetFramework(); + string pivot = configuration.ToLowerInvariant(); + if (IsMultiTargeted()) + { + pivot += "_" + targetFramework ?? TargetFramework; + } + if (string.IsNullOrEmpty(runtimeIdentifier)) + { + runtimeIdentifier = RuntimeIdentifier; + } + if (!string.IsNullOrEmpty(runtimeIdentifier)) + { + pivot += "_" + runtimeIdentifier; + } + return Path.Combine(ArtifactsPath, "obj", Path.GetFileNameWithoutExtension(ProjectPath), pivot); } + targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? string.Empty; @@ -247,9 +269,9 @@ public string GetIntermediateDirectory(string targetFramework = null, string con public string GetPackageDirectory(string configuration = "Debug") { - if (UsesStandardOutputPaths()) + if (UseArtifactsOutput) { - return System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", "package", configuration.ToLowerInvariant()); + return System.IO.Path.Combine(ArtifactsPath, "package", configuration.ToLowerInvariant()); } else { diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs index d2c5ea727991..a4b9b6e81b7b 100644 --- a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs +++ b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs @@ -49,7 +49,9 @@ public TestProject([CallerMemberName] string name = null) public string TargetFrameworkProfile { get; set; } - public bool? UseStandardOutputPaths { get; set; } + public bool UseArtifactsOutput { get; set; } + + public bool UseDirectoryBuildPropsForArtifactsOutput { get; set; } public List ReferencedProjects { get; } = new List(); @@ -246,6 +248,11 @@ internal void Create(TestAsset targetTestAsset, string testProjectsSourceFolder, propertyGroup.Add(new XElement(ns + additionalProperty.Key, additionalProperty.Value)); } + if (UseArtifactsOutput && !UseDirectoryBuildPropsForArtifactsOutput) + { + propertyGroup.Add(new XElement(ns + "UseArtifactsOutput", "true")); + } + if (AdditionalItems.Any()) { foreach (var additionalItem in AdditionalItems) @@ -504,7 +511,7 @@ public static bool ReferenceAssembliesAreInstalled(TargetDotNetFrameworkVersion private OutputPathCalculator GetOutputPathCalculator(string testRoot) { - return OutputPathCalculator.FromTestProject(Path.Combine(testRoot, Name, Name + ".csproj"), this); + return OutputPathCalculator.FromProject(Path.Combine(testRoot, Name, Name + ".csproj"), this); } public string GetOutputDirectory(string testRoot, string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") diff --git a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs b/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs index ecb00e5accd1..7c4c7dbfb13a 100644 --- a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs +++ b/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs @@ -40,7 +40,7 @@ public void ItBuildsARunnableOutput() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputPathCalculator = OutputPathCalculator.FromTestAsset(testInstance.Path); + var outputPathCalculator = OutputPathCalculator.FromProject(testInstance.Path); var outputDll = Path.Combine(outputPathCalculator.GetOutputDirectory(configuration: configuration), $"{testAppName}.dll"); @@ -131,7 +131,7 @@ public void ItRunsWhenRestoringToSpecificPackageDir() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; var outputDll = Directory.EnumerateFiles( - OutputPathCalculator.FromTestAsset(rootPath).GetOutputDirectory(configuration: configuration), "*.dll", + OutputPathCalculator.FromProject(rootPath).GetOutputDirectory(configuration: configuration), "*.dll", SearchOption.TopDirectoryOnly) .Single(); diff --git a/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs b/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs index 2ecf090a7ccf..f4ee95482aaa 100644 --- a/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs +++ b/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs @@ -33,7 +33,7 @@ public void ItCleansAProjectBuiltWithRuntimeIdentifier() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; - var outputFolder = new DirectoryInfo(OutputPathCalculator.FromTestAsset(testInstance.Path).GetOutputDirectory(configuration: configuration, runtimeIdentifier: $"{ToolsetInfo.LatestWinRuntimeIdentifier}-x64")); + var outputFolder = new DirectoryInfo(OutputPathCalculator.FromProject(testInstance.Path).GetOutputDirectory(configuration: configuration, runtimeIdentifier: $"{ToolsetInfo.LatestWinRuntimeIdentifier}-x64")); outputFolder.Should().NotBeEmpty(); diff --git a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs index 6e1b0b676074..c90594fd583d 100644 --- a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs +++ b/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs @@ -48,7 +48,7 @@ public void ItPublishesARunnablePortableApp() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetPublishDirectory(configuration: configuration), $"{testAppName}.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromProject(testProjectDirectory).GetPublishDirectory(configuration: configuration), $"{testAppName}.dll"); new DotnetCommand(Log) .Execute(outputDll) @@ -309,7 +309,7 @@ private DirectoryInfo PublishApp(string testAppName, string rid, string args = n .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - return new DirectoryInfo(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid)); + return new DirectoryInfo(OutputPathCalculator.FromProject(testProjectDirectory).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid)); } [Fact] @@ -331,7 +331,7 @@ public void ItPublishesAppWhenRestoringToSpecificPackageDirectory() var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputProgram = Path.Combine(OutputPathCalculator.FromTestAsset(rootDir).GetPublishDirectory(configuration: configuration), $"TestAppSimple.dll"); + var outputProgram = Path.Combine(OutputPathCalculator.FromProject(rootDir).GetPublishDirectory(configuration: configuration), $"TestAppSimple.dll"); new DotnetCommand(Log, outputProgram) .Execute() @@ -383,7 +383,7 @@ public void ItPublishesSuccessfullyWithNoBuildIfPreviouslyBuilt(bool selfContain var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? _defaultConfiguration; - var outputProgram = Path.Combine(OutputPathCalculator.FromTestAsset(rootPath).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid), $"TestAppSimple.dll"); + var outputProgram = Path.Combine(OutputPathCalculator.FromProject(rootPath).GetPublishDirectory(configuration: configuration, runtimeIdentifier: rid), $"TestAppSimple.dll"); new DotnetCommand(Log, outputProgram) .Execute() diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs index da05f098cebb..62a57fd21d2e 100644 --- a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs +++ b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs @@ -832,12 +832,12 @@ public void WhenValidProjectIsPassedTheSlnBuilds(string testAsset) var reasonString = "should be built in release mode, otherwise it means build configurations are missing from the sln file"; - var appPathCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "App", "App.csproj")); + var appPathCalculator = OutputPathCalculator.FromProject(Path.Combine(projectDirectory, "App", "App.csproj")); new DirectoryInfo(appPathCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); new DirectoryInfo(appPathCalculator.GetOutputDirectory(configuration: "Release")).Should().Exist() .And.HaveFile("App.dll"); - var libPathCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "Lib", "Lib.csproj")); + var libPathCalculator = OutputPathCalculator.FromProject(Path.Combine(projectDirectory, "Lib", "Lib.csproj")); new DirectoryInfo(libPathCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); new DirectoryInfo(libPathCalculator.GetOutputDirectory(configuration: "Release")).Should().Exist() .And.HaveFile("Lib.dll"); diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs index fe14024ec787..7882826505a8 100644 --- a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs +++ b/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs @@ -619,7 +619,7 @@ public void WhenReferenceIsRemovedSlnBuilds() var reasonString = "should be built in release mode, otherwise it means build configurations are missing from the sln file"; - var outputCalculator = OutputPathCalculator.FromTestAsset(Path.Combine(projectDirectory, "App")); + var outputCalculator = OutputPathCalculator.FromProject(Path.Combine(projectDirectory, "App")); new DirectoryInfo(outputCalculator.GetOutputDirectory(configuration: "Debug")).Should().NotExist(reasonString); diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs index 36e709b66dd8..b61e1c430700 100644 --- a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs +++ b/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs @@ -61,7 +61,7 @@ public void GivenADllAndMultipleTestRunParametersItPassesThemToVStestConsoleInTh .Execute() .Should().Pass(); - var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromProject(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); // Call test CommandResult result = new DotnetTestCommand(Log) diff --git a/src/Tests/dotnet-vstest.Tests/VSTestTests.cs b/src/Tests/dotnet-vstest.Tests/VSTestTests.cs index 776b325e74f2..3e814b7569c7 100644 --- a/src/Tests/dotnet-vstest.Tests/VSTestTests.cs +++ b/src/Tests/dotnet-vstest.Tests/VSTestTests.cs @@ -68,7 +68,7 @@ public void GivenADllAndMultipleTestRunParametersItPassesThemToVStestConsoleInTh .Execute() .Should().Pass(); - var outputDll = Path.Combine(OutputPathCalculator.FromTestAsset(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); + var outputDll = Path.Combine(OutputPathCalculator.FromProject(testProjectDirectory).GetOutputDirectory(configuration: configuration), "VSTestTestRunParameters.dll"); // Call test CommandResult result = new DotnetVSTestCommand(Log) From b07165ddd195dfcc74b48127d985cbfec865985e Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 28 Feb 2023 14:04:06 -0500 Subject: [PATCH 22/27] Fix test code null reference --- .../Microsoft.NET.TestFramework/OutputPathCalculator.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index d4a2e13615d7..833102dc0dea 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -185,7 +185,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura { targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; - runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier; + runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; if (IsSdkProject) { @@ -231,7 +231,7 @@ public string GetPublishDirectory(string targetFramework = null, string configur { targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; - runtimeIdentifier = runtimeIdentifier ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "bin", configuration, targetFramework, runtimeIdentifier, "publish"); return output; @@ -261,7 +261,7 @@ public string GetIntermediateDirectory(string targetFramework = null, string con targetFramework = targetFramework ?? TargetFramework; configuration = configuration ?? string.Empty; - runtimeIdentifier = runtimeIdentifier ?? string.Empty; + runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; string output = System.IO.Path.Combine(Path.GetDirectoryName(ProjectPath), "obj", configuration, targetFramework, runtimeIdentifier); return output; From 2026b9a935cbaf8b1310a0499c3f7e5c05ace67e Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Tue, 28 Feb 2023 23:57:59 -0500 Subject: [PATCH 23/27] Fix test issues --- .../OutputPathCalculator.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index 833102dc0dea..bb4ad263b9e4 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -82,7 +82,7 @@ public static OutputPathCalculator FromProject(string projectPath, TestProject t var project = XDocument.Load(projectPath); var ns = project.Root.Name.Namespace; - var useArtifactsOutputElement = project.Root.Elements(ns + "PropertyGroup").Elements("UseArtifactsOutput").FirstOrDefault(); + var useArtifactsOutputElement = project.Root.Elements(ns + "PropertyGroup").Elements(ns + "UseArtifactsOutput").FirstOrDefault(); if (useArtifactsOutputElement != null) { calculator.UseArtifactsOutput = bool.Parse(useArtifactsOutputElement.Value); @@ -93,13 +93,13 @@ public static OutputPathCalculator FromProject(string projectPath, TestProject t } } - var targetFrameworkElement = project.Root.Elements(ns + "PropertyGroup").Elements("TargetFramework").FirstOrDefault(); + var targetFrameworkElement = project.Root.Elements(ns + "PropertyGroup").Elements(ns + "TargetFramework").FirstOrDefault(); if (targetFrameworkElement != null) { calculator.TargetFramework = targetFrameworkElement.Value; } - var targetFrameworksElement = project.Root.Elements(ns + "PropertyGroup").Elements("TargetFrameworks").FirstOrDefault(); + var targetFrameworksElement = project.Root.Elements(ns + "PropertyGroup").Elements(ns + "TargetFrameworks").FirstOrDefault(); if (targetFrameworksElement != null) { calculator.TargetFrameworks = targetFrameworksElement.Value; @@ -117,7 +117,7 @@ public static OutputPathCalculator FromProject(string projectPath, TestProject t var dbp = XDocument.Load(directoryBuildPropsFile); var dbpns = dbp.Root.Name.Namespace; - var dbpUsesArtifacts = dbp.Root.Elements(ns + "PropertyGroup").Elements("UseArtifactsOutput").FirstOrDefault(); + var dbpUsesArtifacts = dbp.Root.Elements(dbpns + "PropertyGroup").Elements(dbpns + "UseArtifactsOutput").FirstOrDefault(); if (dbpUsesArtifacts != null) { @@ -183,7 +183,7 @@ public string GetOutputDirectory(string targetFramework = null, string configura } else { - targetFramework = targetFramework ?? TargetFramework; + targetFramework = targetFramework ?? TargetFramework ?? string.Empty; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; @@ -229,7 +229,7 @@ public string GetPublishDirectory(string targetFramework = null, string configur } else { - targetFramework = targetFramework ?? TargetFramework; + targetFramework = targetFramework ?? TargetFramework ?? string.Empty; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; @@ -259,7 +259,7 @@ public string GetIntermediateDirectory(string targetFramework = null, string con return Path.Combine(ArtifactsPath, "obj", Path.GetFileNameWithoutExtension(ProjectPath), pivot); } - targetFramework = targetFramework ?? TargetFramework; + targetFramework = targetFramework ?? TargetFramework ?? string.Empty; configuration = configuration ?? string.Empty; runtimeIdentifier = runtimeIdentifier ?? RuntimeIdentifier ?? string.Empty; From fc0cb100f11d41e557938ceca48f5c75c041934b Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Wed, 1 Mar 2023 07:17:33 -0500 Subject: [PATCH 24/27] Fix tests --- .../GivenThatWeWantToBuildANetCoreApp.cs | 6 ++---- .../Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs index 8373eeead779..25442a599c5d 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs @@ -639,11 +639,9 @@ public void It_uses_lowercase_form_of_the_target_framework_for_the_output_path(b if (useStandardOutputPaths) { - string outputFolder = Path.Combine(buildCommand.ProjectRootPath, "bin", "build", $"debug_{ToolsetInfo.CurrentTargetFramework}"); - new DirectoryInfo(outputFolder).Should().Exist(); + buildCommand.GetOutputDirectory().Should().Exist(); - string intermediateFolder = Path.Combine(buildCommand.ProjectRootPath, "bin", "obj", $"debug_{ToolsetInfo.CurrentTargetFramework}"); - new DirectoryInfo(intermediateFolder).Should().Exist(); + buildCommand.GetIntermediateDirectory().Should().Exist(); } else { diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs index c7ecd8ddef4e..107b6ad4da0d 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs @@ -75,7 +75,7 @@ internal static string FindProjectFile(ref string projectRootPath, string relati return buildProjectFiles[0]; } - public virtual DirectoryInfo GetOutputDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") + public virtual DirectoryInfo GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = null) { if (TestAsset != null) { @@ -90,7 +90,7 @@ public virtual DirectoryInfo GetOutputDirectory(string targetFramework = "", str return new DirectoryInfo(output); } - public virtual DirectoryInfo GetIntermediateDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") + public virtual DirectoryInfo GetIntermediateDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = null) { if (TestAsset != null) { From 81bf80e11760a46702096a18a9477e3a4134fcd5 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Wed, 1 Mar 2023 10:55:38 -0500 Subject: [PATCH 25/27] Fix publish path calculation for tests --- .../Microsoft.NET.TestFramework/Commands/PublishCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs index 5832ef787498..2dcad7d0d5f0 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs @@ -24,7 +24,7 @@ public PublishCommand(TestAsset testAsset, string relativePathToProject = null) } - public override DirectoryInfo GetOutputDirectory(string targetFramework = "", string configuration = "Debug", string runtimeIdentifier = "") + public override DirectoryInfo GetOutputDirectory(string targetFramework = null, string configuration = "Debug", string runtimeIdentifier = "") { if (TestAsset != null) { From 06fe5abfc80ea7371b4ae757b4a988128871f85b Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 9 Mar 2023 13:52:14 -0500 Subject: [PATCH 26/27] Implement rest of design, fix bugs, add tests --- src/Cli/dotnet/CommonLocalizableStrings.resx | 6 + src/Cli/dotnet/CommonOptions.cs | 9 + .../dotnet-build/BuildCommandParser.cs | 1 + .../dotnet-clean/CleanCommandParser.cs | 1 + .../commands/dotnet-pack/PackCommandParser.cs | 1 + .../dotnet-publish/PublishCommandParser.cs | 1 + .../commands/dotnet-test/TestCommandParser.cs | 1 + .../xlf/CommonLocalizableStrings.cs.xlf | 10 + .../xlf/CommonLocalizableStrings.de.xlf | 10 + .../xlf/CommonLocalizableStrings.es.xlf | 10 + .../xlf/CommonLocalizableStrings.fr.xlf | 10 + .../xlf/CommonLocalizableStrings.it.xlf | 10 + .../xlf/CommonLocalizableStrings.ja.xlf | 10 + .../xlf/CommonLocalizableStrings.ko.xlf | 10 + .../xlf/CommonLocalizableStrings.pl.xlf | 10 + .../xlf/CommonLocalizableStrings.pt-BR.xlf | 10 + .../xlf/CommonLocalizableStrings.ru.xlf | 10 + .../xlf/CommonLocalizableStrings.tr.xlf | 10 + .../xlf/CommonLocalizableStrings.zh-Hans.xlf | 10 + .../xlf/CommonLocalizableStrings.zh-Hant.xlf | 10 + .../Microsoft.NET.Build.Tasks/sdk/Sdk.props | 1 + .../Microsoft.NET.DefaultOutputPaths.targets | 8 +- .../Microsoft.NET.Sdk.BeforeCommon.targets | 4 - ...osoft.NET.TargetFrameworkInference.targets | 4 + .../ArtifactsOutputPathTests.cs | 278 +++++++++++++++++- .../Commands/DotnetBuildCommand.cs | 9 +- .../OutputPathCalculator.cs | 18 ++ .../GivenDotnetBuildInvocation.cs | 1 + .../GivenDotnetCleanInvocation.cs | 1 + .../GivenDotnetPackInvocation.cs | 1 + .../GivenDotnetPublishInvocation.cs | 1 + 31 files changed, 466 insertions(+), 10 deletions(-) diff --git a/src/Cli/dotnet/CommonLocalizableStrings.resx b/src/Cli/dotnet/CommonLocalizableStrings.resx index b5001ce32726..83f629036c43 100644 --- a/src/Cli/dotnet/CommonLocalizableStrings.resx +++ b/src/Cli/dotnet/CommonLocalizableStrings.resx @@ -717,4 +717,10 @@ The default is 'true' if a runtime identifier is specified. OS + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + + ARTIFACTS_DIR + diff --git a/src/Cli/dotnet/CommonOptions.cs b/src/Cli/dotnet/CommonOptions.cs index e9e55183f5f1..953100b70d83 100644 --- a/src/Cli/dotnet/CommonOptions.cs +++ b/src/Cli/dotnet/CommonOptions.cs @@ -51,6 +51,15 @@ public static Option FrameworkOption(string description) => }.ForwardAsSingle(o => $"-property:TargetFramework={o}") .AddCompletions(Complete.TargetFrameworksFromProjectFile); + public static Option ArtifactsPathOption = + new ForwardedOption( + // --artifacts-path is pretty verbose, should we use --artifacts instead (or possibly support both)? + new string[] { "--artifacts-path" }, + description: CommonLocalizableStrings.ArtifactsPathOptionDescription) + { + ArgumentHelpName = CommonLocalizableStrings.ArtifactsPathArgumentName + }.ForwardAsSingle(o => $"-property:ArtifactsPath={CommandDirectoryContext.GetFullPath(o)}"); + private static string RuntimeArgName = CommonLocalizableStrings.RuntimeIdentifierArgumentName; public static IEnumerable RuntimeArgFunc(string rid) { diff --git a/src/Cli/dotnet/commands/dotnet-build/BuildCommandParser.cs b/src/Cli/dotnet/commands/dotnet-build/BuildCommandParser.cs index f31df407073e..814304b3bc31 100644 --- a/src/Cli/dotnet/commands/dotnet-build/BuildCommandParser.cs +++ b/src/Cli/dotnet/commands/dotnet-build/BuildCommandParser.cs @@ -66,6 +66,7 @@ private static Command ConstructCommand() command.AddOption(CommonOptions.VerbosityOption); command.AddOption(CommonOptions.DebugOption); command.AddOption(OutputOption); + command.AddOption(CommonOptions.ArtifactsPathOption); command.AddOption(NoIncrementalOption); command.AddOption(NoDependenciesOption); command.AddOption(NoLogoOption); diff --git a/src/Cli/dotnet/commands/dotnet-clean/CleanCommandParser.cs b/src/Cli/dotnet/commands/dotnet-clean/CleanCommandParser.cs index 6af6981d0dc3..a5283f3e9484 100644 --- a/src/Cli/dotnet/commands/dotnet-clean/CleanCommandParser.cs +++ b/src/Cli/dotnet/commands/dotnet-clean/CleanCommandParser.cs @@ -51,6 +51,7 @@ private static Command ConstructCommand() command.AddOption(CommonOptions.InteractiveMsBuildForwardOption); command.AddOption(CommonOptions.VerbosityOption); command.AddOption(OutputOption); + command.AddOption(CommonOptions.ArtifactsPathOption); command.AddOption(NoLogoOption); command.AddOption(CommonOptions.DisableBuildServersOption); diff --git a/src/Cli/dotnet/commands/dotnet-pack/PackCommandParser.cs b/src/Cli/dotnet/commands/dotnet-pack/PackCommandParser.cs index 15bb0ccd2b3e..46b8f6695723 100644 --- a/src/Cli/dotnet/commands/dotnet-pack/PackCommandParser.cs +++ b/src/Cli/dotnet/commands/dotnet-pack/PackCommandParser.cs @@ -56,6 +56,7 @@ private static Command ConstructCommand() command.AddArgument(SlnOrProjectArgument); command.AddOption(OutputOption); + command.AddOption(CommonOptions.ArtifactsPathOption); command.AddOption(NoBuildOption); command.AddOption(IncludeSymbolsOption); command.AddOption(IncludeSourceOption); diff --git a/src/Cli/dotnet/commands/dotnet-publish/PublishCommandParser.cs b/src/Cli/dotnet/commands/dotnet-publish/PublishCommandParser.cs index 8328f71694db..7f0a4ce103c0 100644 --- a/src/Cli/dotnet/commands/dotnet-publish/PublishCommandParser.cs +++ b/src/Cli/dotnet/commands/dotnet-publish/PublishCommandParser.cs @@ -65,6 +65,7 @@ private static Command ConstructCommand() command.AddArgument(SlnOrProjectArgument); RestoreCommandParser.AddImplicitRestoreOptions(command, includeRuntimeOption: false, includeNoDependenciesOption: true); command.AddOption(OuputOption); + command.AddOption(CommonOptions.ArtifactsPathOption); command.AddOption(ManifestOption); command.AddOption(NoBuildOption); command.AddOption(SelfContainedOption); diff --git a/src/Cli/dotnet/commands/dotnet-test/TestCommandParser.cs b/src/Cli/dotnet/commands/dotnet-test/TestCommandParser.cs index 0064ad6ab34c..67ec63f07593 100644 --- a/src/Cli/dotnet/commands/dotnet-test/TestCommandParser.cs +++ b/src/Cli/dotnet/commands/dotnet-test/TestCommandParser.cs @@ -140,6 +140,7 @@ private static Command ConstructCommand() command.AddOption(AdapterOption); command.AddOption(LoggerOption); command.AddOption(OutputOption); + command.AddOption(CommonOptions.ArtifactsPathOption); command.AddOption(DiagOption); command.AddOption(NoBuildOption); command.AddOption(ResultsOption); diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.cs.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.cs.xlf index 98273c89f7fb..1946508892da 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.cs.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.cs.xlf @@ -12,6 +12,16 @@ Cílová architektura + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Nepovedlo se vyřešit aktuální identifikátor modulu runtime. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf index 8da525643afa..b36dd25f4215 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf @@ -12,6 +12,16 @@ Die Zielarchitektur. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Fehler beim Auflösen des aktuellen Runtimebezeichners. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.es.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.es.xlf index 4180d52534b1..4d42121f4fb9 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.es.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.es.xlf @@ -12,6 +12,16 @@ La arquitectura de destino. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. No se ha podido resolver el identificador en el tiempo de ejecución actual. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.fr.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.fr.xlf index b45e14e79188..dce9d837954d 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.fr.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.fr.xlf @@ -12,6 +12,16 @@ L’architecture cible + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Échec de la résolution de l’identificateur d’exécution actuel diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.it.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.it.xlf index 4bee27daabd7..4f9d6d131706 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.it.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.it.xlf @@ -12,6 +12,16 @@ Architettura di destinazione. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. La risoluzione dell'identificatore di runtime corrente non è riuscita. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ja.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ja.xlf index 6e9dab693b05..9f0c5bfeae27 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ja.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ja.xlf @@ -12,6 +12,16 @@ ターゲット アーキテクチャ。 + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. 現在のランタイム識別子を解決できませんでした。 diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ko.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ko.xlf index 46485cba1768..f5232af3b0e9 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ko.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ko.xlf @@ -12,6 +12,16 @@ 대상 아키텍처입니다. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. 현재 런타임 식별자를 확인하지 못했습니다. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.pl.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.pl.xlf index 94e8e422298d..8a99c9bf627b 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.pl.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.pl.xlf @@ -12,6 +12,16 @@ Architektura docelowa. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Rozpoznawanie bieżącego identyfikatora środowiska uruchomieniowego nie powiodło się. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf index 6c3869b08b53..37fc84d433fd 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf @@ -12,6 +12,16 @@ A arquitetura de destino. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Falha ao resolver o identificador de tempo de execução atual. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ru.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ru.xlf index eac1a91cff92..3682cf58344f 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.ru.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.ru.xlf @@ -12,6 +12,16 @@ Целевая архитектура. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Не удалось разрешить текущий идентификатор среды выполнения. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf index 438b3c742e78..a297cf025fef 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf @@ -12,6 +12,16 @@ Hedef mimari. + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. Geçerli çalışma zamanı tanımlayıcısı çözümlenemedi. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf index 62a9695d4944..66318a8fd908 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf @@ -12,6 +12,16 @@ 目标体系结构。 + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. 解决当前运行时标识符失败。 diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf index 3f864d8eb366..a893b8a310b0 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf @@ -12,6 +12,16 @@ 目標結構。 + + ARTIFACTS_DIR + ARTIFACTS_DIR + + + + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path. + + Resolving the current runtime identifier failed. 解析目前執行階段識別碼失敗。 diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props index 16c354f9e022..836484c261f7 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props +++ b/src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.props @@ -60,6 +60,7 @@ Copyright (c) .NET Foundation. All rights reserved. true + true diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets index 961f19125d55..bbd0e6575c59 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.DefaultOutputPaths.targets @@ -61,8 +61,9 @@ Copyright (c) .NET Foundation. All rights reserved. bin publish package + - + $(Configuration.ToLowerInvariant()) @@ -73,11 +74,10 @@ Copyright (c) .NET Foundation. All rights reserved. RuntimeIdentifier in the path if it was explicitly specified, not if it was inferred. This is the behavior we want. - The BlazorWebAssembly .props file sets the RuntimeIdentifier to blazor-wasm, so treat that as a special case. + The BlazorWebAssembly .props file sets the RuntimeIdentifier to browser-wasm, so treat that as a special case. --> $(ArtifactsPivots)_$(RuntimeIdentifier.ToLowerInvariant()) - @@ -136,6 +136,8 @@ Copyright (c) .NET Foundation. All rights reserved. $(DefaultItemExcludes);$(ArtifactsPath)/** + + $(DefaultItemExcludes);bin/**;obj/** + + diff --git a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs index 18f78505a3a1..ee0e59b9eda1 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs @@ -132,7 +132,7 @@ public void ItUsesArtifactsOutputPathForPublish(bool useDirectoryBuildProps) [Theory] [InlineData(true)] [InlineData(false)] - public void ItUsesRootOutputPathForPack(bool useDirectoryBuildProps) + public void ItUseArtifactstOutputPathForPack(bool useDirectoryBuildProps) { var (testProjects, testAsset) = GetTestProjects(useDirectoryBuildProps); @@ -188,7 +188,281 @@ void ValidateIntermediatePaths(TestAsset testAsset, IEnumerable tes } } - + [Fact] + public void ProjectsCanSwitchOutputFormats() + { + var testProject = new TestProject() + { + IsExe = true, + }; + + var testAsset = _testAssetsManager.CreateTestProject(testProject); + + // Build without artifacts format + new BuildCommand(testAsset) + .Execute() + .Should() + .Pass(); + + new DirectoryInfo(OutputPathCalculator.FromProject(testAsset.Path, testProject).GetOutputDirectory()) + .Should() + .Exist(); + + // Now build as if UseArtifactsOutput was set in project file + new BuildCommand(testAsset) + .Execute("/p:UseArtifactsOutput=true", "/p:ImportDirectoryBuildProps=false") + .Should() + .Pass(); + + new DirectoryInfo(Path.Combine(testAsset.Path, testProject.Name, ".artifacts", "bin", "debug")) + .Should() + .Exist(); + + // Now add a Directory.Build.props file setting UseArtifactsOutput to true + File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), """ + + + true + + + """); + + new BuildCommand(testAsset) + .Execute() + .Should() + .Pass(); + + new DirectoryInfo(OutputPathCalculator.FromProject(testAsset.Path, testProject).GetOutputDirectory()) + .Should() + .Exist(); + + // Now go back to not using artifacts output format + File.Delete(Path.Combine(testAsset.Path, "Directory.Build.props")); + + new BuildCommand(testAsset) + .Execute() + .Should() + .Pass(); + + } + + [Fact] + public void ProjectsCanCustomizeOutputPathBasedOnTargetFramework() + { + var testProject = new TestProject("CustomizeArtifactsPath") + { + IsExe = true, + TargetFrameworks = "net7.0;net8.0;netstandard2.0" + }; + + var testAsset = _testAssetsManager.CreateTestProject(testProject); + + File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), """ + + + true + $(MSBuildThisFileDirectory)\Directory.AfterTargetFrameworkInference.targets + + + """); + + File.WriteAllText(Path.Combine(testAsset.Path, "Directory.AfterTargetFrameworkInference.targets"), """ + + + NET8_$(Configuration) + NET7_$(Configuration) + + + """); + + new BuildCommand(testAsset) + .Execute() + .Should() + .Pass(); + + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", testProject.Name, "NET8_Debug")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", testProject.Name, "NET7_Debug")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", testProject.Name, "debug_netstandard2.0")).Should().Exist(); + + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", testProject.Name, "debug_net8.0")).Should().NotExist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", testProject.Name, "debug_net7.0")).Should().NotExist(); + + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "obj", testProject.Name, "NET8_Debug")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "obj", testProject.Name, "NET7_Debug")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "obj", testProject.Name, "debug_netstandard2.0")).Should().Exist(); + + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "obj", testProject.Name, "debug_net8.0")).Should().NotExist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "obj", testProject.Name, "debug_net7.0")).Should().NotExist(); + + foreach (var targetFramework in testProject.TargetFrameworks.Split(';')) + { + new DotnetPublishCommand(Log, "-f", targetFramework) + .WithWorkingDirectory(Path.Combine(testAsset.Path, testProject.Name)) + .Execute() + .Should() + .Pass(); + } + + // Note that publish defaults to release configuration for .NET 8 but not prior TargetFrameworks + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "publish", testProject.Name, "NET8_Release")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "publish", testProject.Name, "NET7_Debug")).Should().Exist(); + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "publish", testProject.Name, "debug_netstandard2.0")).Should().Exist(); + + new DotnetPackCommand(Log) + .WithWorkingDirectory(Path.Combine(testAsset.Path, testProject.Name)) + .Execute() + .Should() + .Pass(); + + new DirectoryInfo(Path.Combine(testAsset.Path, ".artifacts", "package", "release")).Should().Exist(); + new FileInfo(Path.Combine(testAsset.Path, ".artifacts", "package", "release", testProject.Name + ".1.0.0.nupkg")).Should().Exist(); + } + + TestAsset CreateCustomizedTestProject(bool useDirectoryBuildProps, string propertyName, string propertyValue, [CallerMemberName] string callingMethod = "") + { + var testProject = new TestProject("App") + { + IsExe = true + }; + + testProject.UseArtifactsOutput = true; + testProject.UseDirectoryBuildPropsForArtifactsOutput = useDirectoryBuildProps; + + if (!useDirectoryBuildProps) + { + testProject.AdditionalProperties[propertyName] = propertyValue; + } + + var testAsset = _testAssetsManager.CreateTestProjects(new[] { testProject }, callingMethod: callingMethod, identifier: useDirectoryBuildProps.ToString()); + + if (useDirectoryBuildProps) + { + File.WriteAllText(Path.Combine(testAsset.Path, "Directory.Build.props"), + $""" + + + true + <{propertyName}>{propertyValue} + + + """); + } + + return testAsset; + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void BinOutputNameCanBeSet(bool useDirectoryBuildProps) + { + var testAsset = CreateCustomizedTestProject(useDirectoryBuildProps, "ArtifactsBinOutputName", "binaries"); + + new DotnetBuildCommand(testAsset) + .SetEnvironmentVariables(useDirectoryBuildProps) + .Execute() + .Should() + .Pass(); + + if (useDirectoryBuildProps) + { + new FileInfo(Path.Combine(testAsset.Path, ".artifacts", "binaries", "App", "debug", "App.dll")) + .Should() + .Exist(); + } + else + { + new FileInfo(Path.Combine(testAsset.Path, "App", ".artifacts", "binaries", "debug", "App.dll")) + .Should() + .Exist(); + } + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void PublishOutputNameCanBeSet(bool useDirectoryBuildProps) + { + var testAsset = CreateCustomizedTestProject(useDirectoryBuildProps, "ArtifactsPublishOutputName", "published_app"); + + new DotnetPublishCommand(Log) + .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) + .Execute() + .Should() + .Pass(); + + if (useDirectoryBuildProps) + { + new FileInfo(Path.Combine(testAsset.Path, ".artifacts", "published_app", "App", "release", "App.dll")) + .Should() + .Exist(); + } + else + { + new FileInfo(Path.Combine(testAsset.Path, "App", ".artifacts", "published_app", "release", "App.dll")) + .Should() + .Exist(); + } + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void PackageOutputNameCanBeSet(bool useDirectoryBuildProps) + { + var testAsset = CreateCustomizedTestProject(useDirectoryBuildProps, "ArtifactsPackageOutputName", "package_output"); + + new DotnetPackCommand(Log) + .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) + .Execute() + .Should() + .Pass(); + + if (useDirectoryBuildProps) + { + new FileInfo(Path.Combine(testAsset.Path, ".artifacts", "package_output", "release", "App.1.0.0.nupkg")) + .Should() + .Exist(); + } + else + { + new FileInfo(Path.Combine(testAsset.Path, "App", ".artifacts", "package_output", "release", "App.1.0.0.nupkg")) + .Should() + .Exist(); + } + } + + [Theory] + [InlineData(true)] + [InlineData(false)] + public void ProjectNameCanBeSet(bool useDirectoryBuildProps) + { + var testAsset = CreateCustomizedTestProject(useDirectoryBuildProps, "ArtifactsProjectName", "Apps\\MyApp"); + + new DotnetBuildCommand(Log) + .WithWorkingDirectory(testAsset.Path) + .SetEnvironmentVariables(useDirectoryBuildProps) + .Execute() + .Should() + .Pass(); + + if (useDirectoryBuildProps) + { + new FileInfo(Path.Combine(testAsset.Path, ".artifacts", "bin", "Apps", "MyApp", "debug", "App.dll")) + .Should() + .Exist(); + } + else + { + // Note that customized ArtifactsProjectName doesn't have an impact here when the artifacts folder is already inside the project folder + new FileInfo(Path.Combine(testAsset.Path, "App", ".artifacts", "bin", "debug", "App.dll")) + .Should() + .Exist(); + } + } + } diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs index d34e6d5301d5..1783c972cc38 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs @@ -16,7 +16,14 @@ public DotnetBuildCommand(ITestOutputHelper log, params string[] args) : base(lo public DotnetBuildCommand(TestAsset testAsset, params string[] args) : this(testAsset.Log, args) { - WorkingDirectory = Path.Combine(testAsset.TestRoot, testAsset.TestProject.Name); + if (testAsset.TestProject != null) + { + WorkingDirectory = Path.Combine(testAsset.TestRoot, testAsset.TestProject.Name); + } + else + { + WorkingDirectory = testAsset.TestRoot; + } } } } diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs index bb4ad263b9e4..f9407be3dc87 100644 --- a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs +++ b/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs @@ -36,11 +36,29 @@ public static OutputPathCalculator FromProject(string projectPath, TestAsset tes public static OutputPathCalculator FromProject(string projectPath, TestProject testProject = null) { + string originalProjectPath = projectPath; + if (!File.Exists(projectPath) && Directory.Exists(projectPath)) { projectPath = Directory.GetFiles(projectPath, "*.*proj").FirstOrDefault(); } + // Support passing in the root test path and looking in subfolder specified by testProject + if (projectPath == null && testProject != null) + { + projectPath = Path.Combine(originalProjectPath, testProject.Name); + + if (!File.Exists(projectPath) && Directory.Exists(projectPath)) + { + projectPath = Directory.GetFiles(projectPath, "*.*proj").FirstOrDefault(); + } + } + + if (projectPath == null) + { + throw new ArgumentException($"Test project not found under {projectPath}"); + } + var calculator = new OutputPathCalculator() { ProjectPath = projectPath, diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs index af21b8b7fd31..9ca7422181d3 100644 --- a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs +++ b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs @@ -21,6 +21,7 @@ public class GivenDotnetBuildInvocation : IClassFixturefoo -property:_CommandLineDefinedOutputPath=true")] [InlineData(new string[] { "-property:Verbosity=diag" }, "--property:Verbosity=diag")] [InlineData(new string[] { "--output", "foo" }, "-property:OutputPath=foo -property:_CommandLineDefinedOutputPath=true")] + [InlineData(new string[] { "--artifacts-path", "foo" }, "-property:ArtifactsPath=foo")] [InlineData(new string[] { "-o", "foo1 foo2" }, "\"-property:OutputPath=foo1 foo2\" -property:_CommandLineDefinedOutputPath=true")] [InlineData(new string[] { "--no-incremental" }, "-target:Rebuild")] [InlineData(new string[] { "-r", "rid" }, "-property:RuntimeIdentifier=rid -property:_CommandLineDefinedRuntimeIdentifier=true")] diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs index e86feb9dcd67..6029410bd888 100644 --- a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs +++ b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs @@ -28,6 +28,7 @@ public void ItAddsProjectToMsbuildInvocation() [InlineData(new string[] { }, "")] [InlineData(new string[] { "-o", "" }, "-property:OutputPath= -property:_CommandLineDefinedOutputPath=true")] [InlineData(new string[] { "--output", "" }, "-property:OutputPath= -property:_CommandLineDefinedOutputPath=true")] + [InlineData(new string[] { "--artifacts-path", "foo" }, "-property:ArtifactsPath=foo")] [InlineData(new string[] { "-f", "" }, "-property:TargetFramework=")] [InlineData(new string[] { "--framework", "" }, "-property:TargetFramework=")] [InlineData(new string[] { "-c", "" }, "-property:Configuration=")] diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs index e9114dfed35e..973b6bc88d6d 100644 --- a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs +++ b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs @@ -26,6 +26,7 @@ public class GivenDotnetPackInvocation : IClassFixture" }, "-property:PackageOutputPath=")] [InlineData(new string[] { "--output", "" }, "-property:PackageOutputPath=")] + [InlineData(new string[] { "--artifacts-path", "foo" }, "-property:ArtifactsPath=foo")] [InlineData(new string[] { "--no-build" }, "-property:NoBuild=true")] [InlineData(new string[] { "--include-symbols" }, "-property:IncludeSymbols=true")] [InlineData(new string[] { "--include-source" }, "-property:IncludeSource=true")] diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs index e1acd1938d46..f50495502f23 100644 --- a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs +++ b/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs @@ -34,6 +34,7 @@ public GivenDotnetPublishInvocation(ITestOutputHelper output) [InlineData(new string[] { "--ucr" }, "-property:UseCurrentRuntimeIdentifier=True")] [InlineData(new string[] { "-o", "" }, "-property:PublishDir= -property:_CommandLineDefinedOutputPath=true")] [InlineData(new string[] { "--output", "" }, "-property:PublishDir= -property:_CommandLineDefinedOutputPath=true")] + [InlineData(new string[] { "--artifacts-path", "foo" }, "-property:ArtifactsPath=foo")] [InlineData(new string[] { "-c", "" }, "-property:Configuration= -property:DOTNET_CLI_DISABLE_PUBLISH_AND_PACK_RELEASE=true")] [InlineData(new string[] { "--configuration", "" }, "-property:Configuration= -property:DOTNET_CLI_DISABLE_PUBLISH_AND_PACK_RELEASE=true")] [InlineData(new string[] { "--version-suffix", "" }, "-property:VersionSuffix=")] From de35c579b605507fb156df58b7c6698190554b7b Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 9 Mar 2023 15:17:36 -0500 Subject: [PATCH 27/27] Apply feedback, fix bugs, add test --- ...osoft.NET.TargetFrameworkInference.targets | 3 ++ .../ArtifactsOutputPathTests.cs | 32 +++++++++++++++++-- ...atWeWantToPublishAFrameworkDependentApp.cs | 1 - .../Commands/GetValuesCommand.cs | 6 ++-- .../ProjectConstruction/TestProject.cs | 5 ++- 5 files changed, 39 insertions(+), 8 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.TargetFrameworkInference.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.TargetFrameworkInference.targets index 7faf9a6b09bb..17b3b37ac083 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.TargetFrameworkInference.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.TargetFrameworkInference.targets @@ -53,6 +53,9 @@ Copyright (c) .NET Foundation. All rights reserved. $([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) v$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)', 2)) + + + <_TargetFrameworkVersionWithoutV>$(TargetFrameworkVersion.TrimStart('vV')) diff --git a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs index ee0e59b9eda1..003745419176 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs @@ -243,7 +243,6 @@ public void ProjectsCanSwitchOutputFormats() .Execute() .Should() .Pass(); - } [Fact] @@ -351,6 +350,35 @@ TestAsset CreateCustomizedTestProject(bool useDirectoryBuildProps, string proper return testAsset; } + [Theory] + [InlineData(true)] + [InlineData(false)] + public void ArtifactsPathCanBeSet(bool useDirectoryBuildProps) + { + var artifactsFolder = _testAssetsManager.CreateTestDirectory(identifier: "ArtifactsPath").Path; + + var testAsset = CreateCustomizedTestProject(useDirectoryBuildProps, "ArtifactsPath", artifactsFolder); + + new DotnetBuildCommand(testAsset) + .SetEnvironmentVariables(useDirectoryBuildProps) + .Execute() + .Should() + .Pass(); + + if (useDirectoryBuildProps) + { + new FileInfo(Path.Combine(artifactsFolder, "bin", "App", "debug", "App.dll")) + .Should() + .Exist(); + } + else + { + new FileInfo(Path.Combine(artifactsFolder, "bin", "debug", "App.dll")) + .Should() + .Exist(); + } + } + [Theory] [InlineData(true)] [InlineData(false)] @@ -462,8 +490,6 @@ public void ProjectNameCanBeSet(bool useDirectoryBuildProps) .Exist(); } } - - } namespace ArtifactsTestExtensions diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs index ebc407b6132f..f60ac09a0b28 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs @@ -49,7 +49,6 @@ public void It_publishes_with_or_without_apphost(string useAppHost, string targe $"/p:RuntimeIdentifier={runtimeIdentifier}", $"/p:TestRuntimeIdentifier={runtimeIdentifier}", "/p:SelfContained=false", - //$"/p:TargetFramework={targetFramework}" }; if (useAppHost != null) diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs index 158efe1a7e81..bb9c3aa42838 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs +++ b/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs @@ -117,7 +117,7 @@ protected override SdkCommandSpec CreateCommand(IEnumerable args) File.WriteAllText(injectTargetPath, injectTargetContents); - var outputDirectory = GetValuesDirectory(_targetFramework); + var outputDirectory = GetValuesOutputDirectory(_targetFramework); outputDirectory.Create(); return TestContext.Current.ToolsetUnderTest.CreateCommandForTarget(TargetName, newArgs); @@ -131,7 +131,7 @@ public List GetValues() public List<(string value, Dictionary metadata)> GetValuesWithMetadata() { string outputFilename = $"{_valueName}Values.txt"; - var outputDirectory = GetValuesDirectory(_targetFramework, Configuration ?? "Debug"); + var outputDirectory = GetValuesOutputDirectory(_targetFramework, Configuration ?? "Debug"); string fullFileName = Path.Combine(outputDirectory.FullName, outputFilename); if (File.Exists(fullFileName)) @@ -165,7 +165,7 @@ public List GetValues() } } - DirectoryInfo GetValuesDirectory(string targetFramework = "", string configuration = "Debug") + DirectoryInfo GetValuesOutputDirectory(string targetFramework = "", string configuration = "Debug") { // Use a consistent directory format to put the values text file in, so we don't have to worry about // whether the project uses the standard output path format or not diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs index a4b9b6e81b7b..8ae1bb1994cb 100644 --- a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs +++ b/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs @@ -37,7 +37,10 @@ public TestProject([CallerMemberName] string name = null) public string ProjectSdk { get; set; } - // Applies to SDK Projects + /// + /// Applies to SDK-style projects. If the value has only one target framework (ie no semicolons), the value will be used + /// for the MSBuild TargetFramework (singular) property. Otherwise, the value will be used for the TargetFrameworks property. + /// public string TargetFrameworks { get; set; } = ToolsetInfo.CurrentTargetFramework; public string RuntimeFrameworkVersion { get; set; }